Browse Source

Merge pull request #328 from gre/fix-countervalues-import

Fix countervalues importing
master
Meriadec Pillet 7 years ago
committed by GitHub
parent
commit
bef7d4fe56
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/renderer/init.js

2
src/renderer/init.js

@ -41,7 +41,7 @@ if (Object.keys(settings).length !== 0) {
const countervaluesData = db.get('countervalues')
if (countervaluesData) {
store.dispatch(CounterValues.importAction(store.getState()))
store.dispatch(CounterValues.importAction(countervaluesData))
}
const state = store.getState()

Loading…
Cancel
Save