From 19408b8cffb1aa7c1c29e9483b9b701174853577 Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Tue, 28 Nov 2023 14:38:45 -0300 Subject: [PATCH] Reset everyone's profiles --- src/stores/widgetManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/widgetManager.ts b/src/stores/widgetManager.ts index 47f16d63e..f38c43af6 100644 --- a/src/stores/widgetManager.ts +++ b/src/stores/widgetManager.ts @@ -24,8 +24,8 @@ export const useWidgetManagerStore = defineStore('widget-manager', () => { const editingMode = ref(false) const showGrid = ref(true) const gridInterval = ref(0.01) - const currentMiniWidgetsProfile = useStorage('cockpit-mini-widgets-profile-v3', miniWidgetsProfile) - const savedProfiles = useStorage('cockpit-saved-profiles-v7', []) + const currentMiniWidgetsProfile = useStorage('cockpit-mini-widgets-profile-v4', miniWidgetsProfile) + const savedProfiles = useStorage('cockpit-saved-profiles-v8', []) const currentViewIndex = useStorage('cockpit-current-view-index', 0) const currentProfileIndex = useStorage('cockpit-current-profile-index', 0)