mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
🐛 Fix bug that "alwaysOpenEditWindow" did not work for "json" type
This commit is contained in:
parent
a7fb4d99ba
commit
4c397ea958
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue