mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
🐛 Fix bug that "alwaysOpenEditWindow" did not work for "json" type
This commit is contained in:
@@ -455,7 +455,7 @@ export default mixins(
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.parameter.type === 'string' && this.getArgument('alwaysOpenEditWindow')) {
|
||||
if (['json', 'string'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
|
||||
this.displayEditDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user