diff options
author | Daniel Eder <daniel.eder@magenta.at> | 2020-04-02 07:49:26 +0200 |
---|---|---|
committer | Daniel Eder <daniel.eder@magenta.at> | 2020-04-02 07:49:26 +0200 |
commit | 89fe030fa35ea24195ac366aaf3a1c917b305249 (patch) | |
tree | c0aff16fab5186bb7557642c781bfe1bb4b38f89 | |
parent | c41c1e5293ebb81cb767d2476ae6bf5cec0d983d (diff) | |
download | wekan-89fe030fa35ea24195ac366aaf3a1c917b305249.tar.gz wekan-89fe030fa35ea24195ac366aaf3a1c917b305249.tar.bz2 wekan-89fe030fa35ea24195ac366aaf3a1c917b305249.zip |
subtasks now use swimlane with title matching parent lane title
As discussed in #1953 this is required to handle two-board scenarios correctly.
-rw-r--r-- | client/components/cards/subtasks.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/components/cards/subtasks.js b/client/components/cards/subtasks.js index fad859e7..cdc227fc 100644 --- a/client/components/cards/subtasks.js +++ b/client/components/cards/subtasks.js @@ -20,7 +20,13 @@ BlazeComponent.extendComponent({ const crtBoard = Boards.findOne(card.boardId); const targetBoard = crtBoard.getDefaultSubtasksBoard(); const listId = targetBoard.getDefaultSubtasksListId(); - const swimlaneId = card.swimlaneId; + + //Get the full swimlane data for the parent task. + const parentSwimlane = Swimlanes.findOne({boardId: crtBoard._id, _id: card.swimlaneId}); + //find the swimlane of the same name in the target board. + const targetSwimlane = Swimlanes.findOne({boardId: targetBoard._id, title: parentSwimlane.title}); + //If no swimlane with a matching title exists in the target board, fall back to the default swimlane. + const swimlaneId = targetSwimlane === undefined ? targetBoard.getDefaultSwimline()._id : targetSwimlane._id; if (title) { const _id = Cards.insert({ |