mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Fix miniscreen render
This commit is contained in:
parent
eb62c9ce6a
commit
775476f97c
5 changed files with 24 additions and 21 deletions
|
|
@ -112,9 +112,9 @@ Swimlanes.helpers({
|
|||
archived: false,
|
||||
}).forEach((list) => {
|
||||
list.type = 'list';
|
||||
list.swimlaneId = _id;
|
||||
list.swimlaneId = '';
|
||||
list.boardId = this.boardId;
|
||||
list.copy();
|
||||
list.copy(_id);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
@ -127,7 +127,8 @@ Swimlanes.helpers({
|
|||
|
||||
lists() {
|
||||
return Lists.find(Filter.mongoSelector({
|
||||
swimlaneId: this._id,
|
||||
boardId: this.boardId,
|
||||
swimlaneId: {$in: [this._id, '']},
|
||||
archived: false,
|
||||
}), { sort: ['sort'] });
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue