diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2018-03-19 17:31:53 -0300 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2018-03-19 17:31:53 -0300 |
commit | 3eb6f97291e9160403a3f2a6b1de34c20f434ecb (patch) | |
tree | 05bad944aecf60090ed41001a40887350b5e9460 | |
parent | 06e64d24a80be9df55bf1b0c91f674b6f947882d (diff) | |
download | wekan-3eb6f97291e9160403a3f2a6b1de34c20f434ecb.tar.gz wekan-3eb6f97291e9160403a3f2a6b1de34c20f434ecb.tar.bz2 wekan-3eb6f97291e9160403a3f2a6b1de34c20f434ecb.zip |
Fix lint errors
-rw-r--r-- | .eslintrc.json | 1 | ||||
-rw-r--r-- | models/checklistItems.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 8bd678b3..0a9f3c90 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -131,6 +131,7 @@ "AccountSettings": true, "Announcements": true, "Swimlanes": true, + "ChecklistItems": true, "Npm": true } } diff --git a/models/checklistItems.js b/models/checklistItems.js index 19b3799d..3c01d476 100644 --- a/models/checklistItems.js +++ b/models/checklistItems.js @@ -56,7 +56,7 @@ ChecklistItems.mutations({ }; return {$set: mutatedFields}; - } + }, }); // Activities helper |