diff --git a/CHANGELOG.md b/CHANGELOG.md index b769a27..9fc3b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -76,6 +76,9 @@ ADR-007 and ADR-002. ### Fixed +- System Settings tabs follow the URL: clicking a settings-rail link that + only changes the ?tab= query (Branding, Floor Map) now switches the right + panel, tab clicks update the URL, and browser back/forward restore tabs. - Following a relationship link between two assets of the same type now loads the destination page instead of stale content (router-view keyed on path; query-only URL changes still avoid a remount). diff --git a/frontend/src/views/settings/SystemSettings.vue b/frontend/src/views/settings/SystemSettings.vue index 095c8fd..ec52a5f 100644 --- a/frontend/src/views/settings/SystemSettings.vue +++ b/frontend/src/views/settings/SystemSettings.vue @@ -15,7 +15,7 @@ :key="tab.key" class="settings-tab" :class="{ active: activeTab === tab.key }" - @click="activeTab = tab.key" + @click="selectTab(tab.key)" >{{ tab.label }}
No matching settings
@@ -923,7 +923,7 @@