summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
authorMarc Hartmayer <hello@hartmayer.com>2020-04-21 17:06:39 +0200
committerMarc Hartmayer <hello@hartmayer.com>2020-04-21 18:15:29 +0200
commitb2acc3ba45c48d3bb3b25e84bc31f5b80e7961d4 (patch)
tree412c87a8eeb2976677b7269ab577a82a97bfdb6b /models
parent3407b0e65b0ed3cbd864d605f6cd5935db22c987 (diff)
downloadwekan-b2acc3ba45c48d3bb3b25e84bc31f5b80e7961d4.tar.gz
wekan-b2acc3ba45c48d3bb3b25e84bc31f5b80e7961d4.tar.bz2
wekan-b2acc3ba45c48d3bb3b25e84bc31f5b80e7961d4.zip
Multiple lint issue fixes
Found by using the command `meteor npm run lint:eslint:fix`.
Diffstat (limited to 'models')
-rw-r--r--models/cards.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/cards.js b/models/cards.js
index 5a812679..485837ef 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -1475,12 +1475,12 @@ Cards.mutations({
},
};
},
- setVoteQuestion(question, public) {
+ setVoteQuestion(question, public_) {
return {
$set: {
vote: {
question,
- public,
+ public_,
positive: [],
negative: [],
},