mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(editor): Make tag search in workflows case insensitive (#17347)
This commit is contained in:
@@ -59,7 +59,9 @@ const container = ref<HTMLDivElement>();
|
||||
const dropdownId = uuid();
|
||||
|
||||
const options = computed<ITag[]>(() => {
|
||||
return props.allTags.filter((tag: ITag) => tag && tag.name.includes(filter.value));
|
||||
return props.allTags.filter(
|
||||
(tag: ITag) => tag && tag.name.toLowerCase().includes(filter.value.toLowerCase()),
|
||||
);
|
||||
});
|
||||
|
||||
const appliedTags = computed<string[]>(() => {
|
||||
|
||||
Reference in New Issue
Block a user