summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2018-01-22 23:35:23 -0300
committerAndrés Manelli <andresmanelli@gmail.com>2018-01-22 23:35:23 -0300
commit7b04f14e3c33db0b1c3ecff003262e7689383a15 (patch)
tree46a80202086eb247982595effa0746439a27efe5 /client/components/lists/listBody.js
parenta14f4ffee297872c72edc99d7b147d18802f7d44 (diff)
downloadwekan-7b04f14e3c33db0b1c3ecff003262e7689383a15.tar.gz
wekan-7b04f14e3c33db0b1c3ecff003262e7689383a15.tar.bz2
wekan-7b04f14e3c33db0b1c3ecff003262e7689383a15.zip
Allow toogle of lists and swimlanes views
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r--client/components/lists/listBody.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index 0911f828..2ca654b2 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -98,6 +98,13 @@ BlazeComponent.extendComponent({
MultiSelection.toggle(this.currentData()._id);
},
+ idOrNull(swimlaneId) {
+ const board = Boards.findOne(Session.get('currentBoard'));
+ if (board.view === 'board-view-swimlanes')
+ return swimlaneId;
+ return undefined;
+ },
+
canSeeAddCard() {
return !this.reachedWipLimit() && Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
},