Disabled migrations that happen when opening board. Defaulting to per-swimlane lists and drag drop list to same or different swimlane.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2025-10-25 19:17:09 +03:00
parent d1a51b42f6
commit 034dc08269
4 changed files with 57 additions and 48 deletions

View file

@ -232,8 +232,12 @@ Swimlanes.helpers({
},
myLists() {
// Revert to shared lists: provide lists by board for this swimlane's board
return ReactiveCache.getLists({ boardId: this.boardId });
// Return per-swimlane lists: provide lists specific to this swimlane
return ReactiveCache.getLists({
boardId: this.boardId,
swimlaneId: this._id,
archived: false
});
},
allCards() {