mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(editor): Case-sensitive credential search in NodeCredentials component (#17564)
This commit is contained in:
@@ -500,7 +500,7 @@ function setFilter(newFilter = '') {
|
||||
}
|
||||
|
||||
function matches(needle: string, haystack: string) {
|
||||
return haystack.toLocaleLowerCase().includes(needle);
|
||||
return haystack.toLocaleLowerCase().includes(needle.toLocaleLowerCase());
|
||||
}
|
||||
|
||||
async function onClickCreateCredential(type: ICredentialType | INodeCredentialDescription) {
|
||||
|
||||
Reference in New Issue
Block a user