lint
This commit is contained in:
parent
4e21031fde
commit
2520935676
4 changed files with 9 additions and 5 deletions
|
|
@ -3,8 +3,8 @@ import { defineStore } from 'pinia'
|
|||
|
||||
import { instanceDefaultProperties } from '../modules/config.js'
|
||||
import {
|
||||
instanceDefaultConfig,
|
||||
defaultConfigLocal,
|
||||
instanceDefaultConfig,
|
||||
staticOrApiConfigDefault,
|
||||
} from '../modules/default_config_state.js'
|
||||
import apiService from '../services/api/api.service.js'
|
||||
|
|
|
|||
|
|
@ -643,7 +643,9 @@ export const useSyncConfigStore = defineStore('sync_config', {
|
|||
vuexState.config = vuexState.config ?? {}
|
||||
|
||||
const migratedEntries = new Set(vuexState.config._syncMigration ?? [])
|
||||
console.debug(`Already migrated Values: ${[...migratedEntries].join() || '[none]'}`)
|
||||
console.debug(
|
||||
`Already migrated Values: ${[...migratedEntries].join() || '[none]'}`,
|
||||
)
|
||||
|
||||
Object.entries(oldDefaultConfigSync).forEach(([key, value]) => {
|
||||
const oldValue = vuexState.config[key]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue