diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2018-04-18 02:37:20 -0300 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2018-08-11 00:14:13 +0200 |
commit | fb75a487fcde4f04a371a5ed097ba97cc7134c24 (patch) | |
tree | a0c97dd2ccd950ed974ce602f640775299cb1cf4 /client/components/lists/listBody.js | |
parent | 37306c8d2244c33aa924de375f2e17f438117d54 (diff) | |
download | wekan-fb75a487fcde4f04a371a5ed097ba97cc7134c24.tar.gz wekan-fb75a487fcde4f04a371a5ed097ba97cc7134c24.tar.bz2 wekan-fb75a487fcde4f04a371a5ed097ba97cc7134c24.zip |
Fix lint errors
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r-- | client/components/lists/listBody.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js index 48532cac..02e4ab7c 100644 --- a/client/components/lists/listBody.js +++ b/client/components/lists/listBody.js @@ -339,7 +339,7 @@ BlazeComponent.extendComponent({ listId: this.selectedListId.get(), archived: false, importedId: null, - _id: {$nin: this.board.cards().map((card) => { return card.importedId || card._id})}, + _id: {$nin: this.board.cards().map((card) => { return card.importedId || card._id; })}, }); }, |