summaryrefslogtreecommitdiffstats
path: root/models/lists.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2019-02-24 11:54:52 +0100
committerAndrés Manelli <andresmanelli@gmail.com>2019-02-24 11:54:52 +0100
commit775476f97c1dda92e856ca4650e6003ea1487d2b (patch)
tree500b3865d93b1dd5e9f2aaf60cced1a77dcf70a5 /models/lists.js
parenteb62c9ce6ad0fa0d5de7889ec087db8cdc579339 (diff)
downloadwekan-775476f97c1dda92e856ca4650e6003ea1487d2b.tar.gz
wekan-775476f97c1dda92e856ca4650e6003ea1487d2b.tar.bz2
wekan-775476f97c1dda92e856ca4650e6003ea1487d2b.zip
Fix miniscreen render
Diffstat (limited to 'models/lists.js')
-rw-r--r--models/lists.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/models/lists.js b/models/lists.js
index 453e0be1..bf2430ee 100644
--- a/models/lists.js
+++ b/models/lists.js
@@ -29,7 +29,7 @@ Lists.attachSchema(new SimpleSchema({
},
swimlaneId: {
/**
- * the swimalen associated to this list. Used for templates
+ * the swimlane associated to this list. Used for templates
*/
type: String,
defaultValue: '',
@@ -137,7 +137,7 @@ Lists.allow({
});
Lists.helpers({
- copy() {
+ copy(swimlaneId) {
const oldId = this._id;
let _id = null;
existingListWithSameName = Lists.findOne({
@@ -159,7 +159,7 @@ Lists.helpers({
card.type = 'cardType-card';
card.listId = _id;
card.boardId = this.boardId;
- card.swimlaneId = this.swimlaneId;
+ card.swimlaneId = swimlaneId;
card.copy();
});
},