mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-21 23:53:52 +00:00
chore: update persist keys to new interface
This commit is contained in:
parent
11e6969cd3
commit
952965c3ba
|
@ -36,7 +36,7 @@ export const useColorStore = defineStore('colorStore', {
|
|||
},
|
||||
persist: {
|
||||
key: STORE_UI_COLORS,
|
||||
paths: ['colorPreference'],
|
||||
pick: ['colorPreference'],
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
@ -117,7 +117,7 @@ export const useLayoutStore = defineStore('layoutStore', {
|
|||
},
|
||||
persist: {
|
||||
key: STORE_LAYOUTS,
|
||||
afterRestore: (context) => {
|
||||
afterHydrate: (context) => {
|
||||
if (
|
||||
context.store.dashboardLayout === null ||
|
||||
typeof context.store.dashboardLayout === 'string' ||
|
||||
|
|
|
@ -250,7 +250,7 @@ export const usePairlistConfigStore = defineStore(
|
|||
{
|
||||
persist: {
|
||||
key: 'ftPairlistConfig',
|
||||
paths: ['savedConfigs', 'configName'],
|
||||
pick: ['savedConfigs', 'configName'],
|
||||
},
|
||||
},
|
||||
);
|
||||
|
|
|
@ -80,8 +80,8 @@ export const usePlotConfigStore = defineStore('plotConfig', {
|
|||
},
|
||||
persist: {
|
||||
key: FT_PLOT_CONFIG_KEY,
|
||||
paths: ['plotConfigName', 'customPlotConfigs'],
|
||||
afterRestore: (context) => {
|
||||
pick: ['plotConfigName', 'customPlotConfigs'],
|
||||
afterHydrate: (context) => {
|
||||
if (Object.keys(context.store.customPlotConfigs).length === 0) {
|
||||
console.log('Initialized plotconfig');
|
||||
context.store.customPlotConfigs = { default: deepClone(EMPTY_PLOTCONFIG) };
|
||||
|
|
Loading…
Reference in New Issue
Block a user