summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-05-18 16:22:53 +0300
committerLauri Ojansivu <x@xet7.org>2018-05-18 16:22:53 +0300
commit50f751e0a9f8214d690f6fd39136d09a46a8e69a (patch)
tree3a0e58883030abbfa8eb454d181356a8be299d79 /client/components/lists/listBody.js
parent61b240d126bcce7adcdb303c5b01a202dc7fa395 (diff)
parent1984a6b1c80dbd8b4eff89aa92913f943bacc63b (diff)
downloadwekan-50f751e0a9f8214d690f6fd39136d09a46a8e69a.tar.gz
wekan-50f751e0a9f8214d690f6fd39136d09a46a8e69a.tar.bz2
wekan-50f751e0a9f8214d690f6fd39136d09a46a8e69a.zip
Merge branch 'devel' into greenkeeper/initial
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 52f34fab..4bf7b369 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -35,6 +35,10 @@ 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;
let swimlaneId = '';
@@ -49,6 +53,7 @@ BlazeComponent.extendComponent({
title,
members,
labelIds,
+ customFields,
listId: this.data()._id,
boardId: this.data().board()._id,
sort: sortIndex,
@@ -146,11 +151,13 @@ BlazeComponent.extendComponent({
onCreated() {
this.labels = new ReactiveVar([]);
this.members = new ReactiveVar([]);
+ this.customFields = new ReactiveVar([]);
},
reset() {
this.labels.set([]);
this.members.set([]);
+ this.customFields.set([]);
},
getLabels() {