mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Fix ResourceLocator dropdown style (#5714)
* fix(editor): Fix ResourceLocator dropdown style * Fix other popper classes * Fix app hanging if loading many remote parameter options * Make ResourceLocatorDropdown flex * Override scrollbar styles * Hide resource locator on outside click not input blur
This commit is contained in:
@@ -787,10 +787,13 @@ export default mixins(
|
||||
isSecretParameter(): boolean {
|
||||
return this.getArgument('password') === true;
|
||||
},
|
||||
remoteParameterOptionsKeys(): string[] {
|
||||
return (this.remoteParameterOptions || []).map((o) => o.name);
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
isRemoteParameterOption(option: INodePropertyOptions) {
|
||||
return this.remoteParameterOptions.map((o) => o.name).includes(option.name);
|
||||
return this.remoteParameterOptionsKeys.includes(option.name);
|
||||
},
|
||||
credentialSelected(updateInformation: INodeUpdatePropertiesInformation) {
|
||||
// Update the values on the node
|
||||
|
||||
Reference in New Issue
Block a user