fixed linked card swimlane routing

This commit is contained in:
KhaoulaMaleh 2026-03-09 02:25:13 -11:00 committed by wekan
parent 6953cc0670
commit 48361b2047
3 changed files with 8 additions and 0 deletions

View file

@ -123,6 +123,8 @@ Template.subtaskActionsPopup.events({
boardId: board._id,
slug: board.slug,
cardId: subtask._id,
swimlaneId: subtask.swimlaneId,
listId: subtask.listId,
});
}
},

View file

@ -503,6 +503,8 @@ Utils = {
cardId: card._id,
boardId: board._id,
slug: board.slug,
swimlaneId: card.swimlaneId,
listId: card.listId,
})
);
},

View file

@ -1041,6 +1041,8 @@ Cards.helpers({
boardId: board._id,
slug: board.slug || 'board',
cardId: this._id,
swimlaneId: this.swimlaneId,
listId: this.listId,
});
},
originRelativeUrl() {
@ -1050,6 +1052,8 @@ Cards.helpers({
boardId: board._id,
slug: board.slug || 'board',
cardId: this._id,
swimlaneId: this.swimlaneId,
listId: this.listId,
});
},