summaryrefslogtreecommitdiffstats
path: root/client/components/cards
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 /client/components/cards
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 'client/components/cards')
-rw-r--r--client/components/cards/cardDetails.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index ce504146..a578ba7c 100644
--- a/client/components/cards/cardDetails.js
+++ b/client/components/cards/cardDetails.js
@@ -420,9 +420,9 @@ BlazeComponent.extendComponent({
const forIt = $(e.target).hasClass('js-vote-positive');
let newState = null;
if (
- this.voteState() == null ||
- (this.voteState() == false && forIt) ||
- (this.voteState() == true && !forIt)
+ this.voteState() === null ||
+ (this.voteState() === false && forIt) ||
+ (this.voteState() === true && !forIt)
) {
newState = forIt;
}