mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-04 18:49:20 +02:00
hide Create New on exact case insensitive match
This commit is contained in:
parent
0db563c369
commit
5054d6546d
|
|
@ -237,7 +237,11 @@ onClickOutside(
|
|||
data-test-id="tag"
|
||||
/>
|
||||
<N8nOption
|
||||
v-if="createEnabled && filter && !options.some((x) => x.name === filter.trim())"
|
||||
v-if="
|
||||
createEnabled &&
|
||||
filter &&
|
||||
!options.some((x) => x.name.toLowerCase() === filter.trim().toLowerCase())
|
||||
"
|
||||
:key="CREATE_KEY"
|
||||
ref="createRef"
|
||||
:value="CREATE_KEY"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user