Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b31b441

Browse files
Merge pull request SimulatedGREG#307 from Rob--/master
Update Counter.js - fixed typos
2 parents 9c9bf75 + aad6b51 commit b31b441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/src/renderer/store/modules/Counter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ const state = {
44

55
const mutations = {
66
DECREMENT_MAIN_COUNTER (state) {
7-
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main + 1{{else}}state.main--{{/if_eq}}
7+
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main - 1{{else}}state.main--{{/if_eq}}
88
},
99
INCREMENT_MAIN_COUNTER (state) {
10-
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main - 1{{else}}state.main++{{/if_eq}}
10+
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main + 1{{else}}state.main++{{/if_eq}}
1111
}
1212
}
1313

0 commit comments

Comments
 (0)