diff options
Diffstat (limited to 'src/components/SettingsModal.vue')
| -rw-r--r-- | src/components/SettingsModal.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/SettingsModal.vue b/src/components/SettingsModal.vue index bb1370e..2c4a0df 100644 --- a/src/components/SettingsModal.vue +++ b/src/components/SettingsModal.vue @@ -124,11 +124,13 @@ let changedCtg: string | null = null; // Used to defer signalling of a category function onSettingChg(option: string){ store.save(option); + if (option.startsWith('ctgs.')){ changedCtg = option; } else { emit('change', option); } + // Make 'Saved' indicator appear/animate if (!saved.value){ saved.value = true; |
