fix(editor): Fix issue with case insensitive tags (#9071)

This commit is contained in:
Ricardo Espinoza
2024-04-05 09:00:18 -04:00
committed by GitHub
parent 4052b6c073
commit caea27dbb5
2 changed files with 3 additions and 5 deletions

View File

@@ -124,9 +124,7 @@ export default defineComponent({
});
const options = computed<ITag[]>(() => {
return allTags.value.filter(
(tag: ITag) => tag && tag.name.toLowerCase().includes(filter.value.toLowerCase()),
);
return allTags.value.filter((tag: ITag) => tag && tag.name.includes(filter.value));
});
const appliedTags = computed<string[]>(() => {
@@ -182,7 +180,7 @@ export default defineComponent({
}
function filterOptions(value = '') {
filter.value = value.trim();
filter.value = value;
void nextTick(() => focusFirstOption());
}