diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-20 21:56:53 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-20 21:56:53 +1100 |
| commit | 8321e2f92dbc073b8f1de87895d6620a2021b22e (patch) | |
| tree | 50e7f2d50aaec68ca90aa46539d05cab5249ffe1 /src/App.vue | |
| parent | e6b9c10f0f1eefee556833d98a1f322856dcbb7e (diff) | |
Relayout events upon category changes
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index 4149a66..534f528 100644 --- a/src/App.vue +++ b/src/App.vue @@ -344,7 +344,7 @@ function onSearch(event: HistEvent){ // For settings modal const settingsOpen = ref(false); function onSettingChg(option: string){ - if (option == 'reqImgs'){ + if (option == 'reqImgs' || option.startsWith('ctgs.')){ // Reset event data eventTree.value = new RBTree(cmpHistEvent); // Will trigger event re-query unitCountMaps.value = SCALES.map(() => new Map()); |
