Make sure that all cards are visible.

Thanks to xet7 !

Related #5915
This commit is contained in:
Lauri Ojansivu 2025-10-15 07:15:46 +03:00
parent 70ce70cf0e
commit 6b848b318d

View file

@ -223,10 +223,9 @@ BlazeComponent.extendComponent({
}
}
if (Filter.hideEmpty.isSelected()) {
const swimlaneId = this.parentComponent()
.parentComponent()
.data()._id;
const cards = list.cards(swimlaneId);
// Check for cards in all swimlanes, not just the current one
// This ensures lists with cards in other swimlanes are still visible
const cards = list.cards();
if (cards.length === 0) {
return false;
}
@ -375,10 +374,9 @@ BlazeComponent.extendComponent({
}
}
if (Filter.hideEmpty.isSelected()) {
const swimlaneId = this.parentComponent()
.parentComponent()
.data()._id;
const cards = list.cards(swimlaneId);
// Check for cards in all swimlanes, not just the current one
// This ensures lists with cards in other swimlanes are still visible
const cards = list.cards();
if (cards.length === 0) {
return false;
}