Skip to content

Commit

Permalink
fix an oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaomiDEV committed Feb 9, 2025
1 parent ff39444 commit a13cf6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/options/TagManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
const tags = shallowRef<Tag[]>();
const filteredTags = shallowRef<Tag[]>();
watch([search, tags], async () => {
watch([search, tags, type], async () => {
filteredTags.value = getFilteredTags(search.value, tags.value?.filter(x => x.type === type.value));
}, {immediate: true});
Expand Down

0 comments on commit a13cf6a

Please sign in to comment.