Browse Source

Keep checkpoint for the all projects

pull/897/head
Hironsan 4 years ago
parent
commit
8fb3b0e9ed
1 changed files with 1 additions and 1 deletions
  1. 2
      frontend/store/projects.js

2
frontend/store/projects.js

@ -243,7 +243,7 @@ export const mutations = {
state.current = payload
},
saveSearchOptions(state, options) {
const checkpoint = {}
const checkpoint = JSON.parse(localStorage.getItem('checkpoint')) || {}
checkpoint[state.current.id] = options
localStorage.setItem('checkpoint', JSON.stringify(checkpoint))
}

Loading…
Cancel
Save