From 62f27e5b8c3a1df20a811d2a8c399e8eb6a847e1 Mon Sep 17 00:00:00 2001 From: Danny Coulombe Date: Wed, 31 Dec 2025 10:13:53 -0500 Subject: [PATCH] StructureEditor tabs should be disabled when the user is not logged in in desktop mode --- src/components/StructureEditor.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/StructureEditor.vue b/src/components/StructureEditor.vue index 1527ed8..5d9cc97 100644 --- a/src/components/StructureEditor.vue +++ b/src/components/StructureEditor.vue @@ -552,6 +552,7 @@ watch(() => globalStore.userSettings.data, () => { :key="section.key" :prepend-icon="section.disabled() ? 'mdi-alert' : section.icon" :text="section.title" + :disabled="section.disabled()" @click="setSection(section)" />