We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e8ae8 commit 0a807f2Copy full SHA for 0a807f2
services/frontend/src/views/GlobalSettings.vue
@@ -106,6 +106,11 @@ function createInitialValues(settings: Setting[]) {
106
return values
107
}
108
109
+// Watch for route changes and reset success alert
110
+watch(() => route.params.groupId, () => {
111
+ showSuccessAlert.value = false
112
+})
113
+
114
// Watch for group changes and set form values
115
watch(() => selectedGroup.value, (newGroup) => {
116
if (newGroup?.settings) {
0 commit comments