summaryrefslogtreecommitdiffstats
path: root/models/cards.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-04-22 20:06:50 +0300
committerGitHub <noreply@github.com>2020-04-22 20:06:50 +0300
commit5a5b19d4fc889f5c3e9d7feb32539a2787440027 (patch)
tree6640ec2cf3ec3b0e54640295a024daacfded87fb /models/cards.js
parent4d48fa4d9552452c5cfe3736e6a476aca26c5b8b (diff)
parentb2acc3ba45c48d3bb3b25e84bc31f5b80e7961d4 (diff)
downloadwekan-5a5b19d4fc889f5c3e9d7feb32539a2787440027.tar.gz
wekan-5a5b19d4fc889f5c3e9d7feb32539a2787440027.tar.bz2
wekan-5a5b19d4fc889f5c3e9d7feb32539a2787440027.zip
Merge pull request #3031 from marc1006/style_issues
Multiple lint issue fixes
Diffstat (limited to 'models/cards.js')
-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: [],
},