diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2018-01-31 15:46:59 -0300 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2018-01-31 15:46:59 -0300 |
commit | ff9ca755f338e3c45a1bd726dfbce1c607f2ff4c (patch) | |
tree | 7100c84a6fe294eb98921f9e70c793c5e658af91 /client/components/lists | |
parent | d3c110cd8f3ad16a4ced5520c27ab542cc79b548 (diff) | |
download | wekan-ff9ca755f338e3c45a1bd726dfbce1c607f2ff4c.tar.gz wekan-ff9ca755f338e3c45a1bd726dfbce1c607f2ff4c.tar.bz2 wekan-ff9ca755f338e3c45a1bd726dfbce1c607f2ff4c.zip |
Fix details view in lists only mode
Diffstat (limited to 'client/components/lists')
-rw-r--r-- | client/components/lists/listsGroup.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/components/lists/listsGroup.js b/client/components/lists/listsGroup.js new file mode 100644 index 00000000..f94f681f --- /dev/null +++ b/client/components/lists/listsGroup.js @@ -0,0 +1,13 @@ +BlazeComponent.extendComponent({ + currentCardIsInThisList(listId, swimlaneId) { + const currentCard = Cards.findOne(Session.get('currentCard')); + const currentBoardId = Session.get('currentBoard'); + const board = Boards.findOne(currentBoardId); + if (board.view === 'board-view-lists') + return currentCard && currentCard.listId === listId; + else if (board.view === 'board-view-swimlanes') + return currentCard && currentCard.listId === listId && currentCard.swimlaneId === swimlaneId; + else + return false; + }, +}).register('listsGroup'); |