Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request Azgaar#307 from Rob--/master
Browse files Browse the repository at this point in the history
Update Counter.js - fixed typos
  • Loading branch information
SimulatedGREG authored Jul 11, 2017
2 parents 9c9bf75 + aad6b51 commit b31b441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template/src/renderer/store/modules/Counter.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ const state = {

const mutations = {
DECREMENT_MAIN_COUNTER (state) {
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main + 1{{else}}state.main--{{/if_eq}}
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main - 1{{else}}state.main--{{/if_eq}}
},
INCREMENT_MAIN_COUNTER (state) {
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main - 1{{else}}state.main++{{/if_eq}}
{{#if_eq eslintConfig 'airbnb'}}state.main = state.main + 1{{else}}state.main++{{/if_eq}}
}
}

Expand Down

0 comments on commit b31b441

Please sign in to comment.