lint
This commit is contained in:
parent
eb1807351c
commit
c05381e6aa
26 changed files with 81 additions and 54 deletions
|
|
@ -14,8 +14,8 @@ import {
|
|||
uniqWith,
|
||||
unset,
|
||||
} from 'lodash'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
import { defineStore } from 'pinia'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
import { toRaw } from 'vue'
|
||||
|
||||
import { CURRENT_UPDATE_COUNTER } from 'src/components/update_notification/update_notification.js'
|
||||
|
|
@ -684,8 +684,6 @@ export const useSyncConfigStore = defineStore('sync_config', {
|
|||
`Already migrated Values: ${[...migratedEntries].join() || '[none]'}`,
|
||||
)
|
||||
|
||||
const { configMigration } = useSyncConfigStore().flagStorage
|
||||
|
||||
Object.entries(oldDefaultConfigSync).forEach(([key, value]) => {
|
||||
const oldValue = config[key]
|
||||
const defaultValue = value
|
||||
|
|
|
|||
|
|
@ -292,7 +292,10 @@ export const useUserHighlightStore = defineStore('user_highlight', {
|
|||
)
|
||||
}
|
||||
})
|
||||
storage.setItem('vuex-lz', { ...vuexState, config: { ...config, highlight } })
|
||||
storage.setItem('vuex-lz', {
|
||||
...vuexState,
|
||||
config: { ...config, highlight },
|
||||
})
|
||||
|
||||
if (recent === null) {
|
||||
console.debug(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue