summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-07-05 22:48:43 +0300
committerLauri Ojansivu <x@xet7.org>2018-07-05 22:48:43 +0300
commit06423164fb063a5e359bbb5866959f87110bf7c2 (patch)
tree592198eac47b5a8e3792c6660faf6230416dcaee /client/components/lists/listBody.js
parent515c9be051272b91563c6de516424a246503853a (diff)
parent3eba6ef2856946925795f9cd370583be892344dd (diff)
downloadwekan-06423164fb063a5e359bbb5866959f87110bf7c2.tar.gz
wekan-06423164fb063a5e359bbb5866959f87110bf7c2.tar.bz2
wekan-06423164fb063a5e359bbb5866959f87110bf7c2.zip
Merge branch 'nested-tasks' of https://github.com/TNick/wekan into TNick-nested-tasks
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r--client/components/lists/listBody.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index adb2fadb..0a10f7d5 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -36,17 +36,14 @@ BlazeComponent.extendComponent({
const members = formComponent.members.get();
const labelIds = formComponent.labels.get();
const customFields = formComponent.customFields.get();
- //console.log('members', members);
- //console.log('labelIds', labelIds);
- //console.log('customFields', customFields);
- const boardId = this.data().board()._id;
+ const boardId = this.data().board();
let swimlaneId = '';
const boardView = Meteor.user().profile.boardView;
if (boardView === 'board-view-swimlanes')
swimlaneId = this.parentComponent().parentComponent().data()._id;
else if ((boardView === 'board-view-lists') || (boardView === 'board-view-cal'))
- swimlaneId = Swimlanes.findOne({boardId})._id;
+ swimlaneId = boardId.getDefaultSwimline()._id;
if (title) {
const _id = Cards.insert({
@@ -55,7 +52,7 @@ BlazeComponent.extendComponent({
labelIds,
customFields,
listId: this.data()._id,
- boardId: this.data().board()._id,
+ boardId: boardId._id,
sort: sortIndex,
swimlaneId,
});