From e69734c13763b7957b38f0e29caf149b6d767074 Mon Sep 17 00:00:00 2001 From: Arturo Manzoli Date: Mon, 16 Dec 2024 10:12:13 -0300 Subject: [PATCH] Store: App-interface: Add side-config-panel control Signed-off-by: Arturo Manzoli --- src/stores/appInterface.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/appInterface.ts b/src/stores/appInterface.ts index 5dd5e3ba4..00b900fd9 100644 --- a/src/stores/appInterface.ts +++ b/src/stores/appInterface.ts @@ -27,6 +27,7 @@ export const useAppInterfaceStore = defineStore('responsive', { configComponent: -1, isGlassModalAlwaysOnTop: false, isTutorialVisible: false, + configPanelVisible: false, }), actions: { updateWidth() { @@ -89,6 +90,7 @@ export const useAppInterfaceStore = defineStore('responsive', { boxShadow: '0px 4px 4px 0px #00000033, 0px 8px 12px 6px #00000016', animation: 'highlightBackground 0.5s alternate 20', }), + isConfigPanelVisible: (state) => state.configPanelVisible, }, })