mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.parameter.type === 'string' && this.getArgument('alwaysOpenEditWindow')) {
|
if (['json', 'string'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
|
||||||
this.displayEditDialog();
|
this.displayEditDialog();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user