mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Fix issue that parameter inputs on lower levels are very small
This commit is contained in:
@@ -30,6 +30,9 @@ export default Vue
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
isMultiLineParameter () {
|
isMultiLineParameter () {
|
||||||
|
if (this.level > 4) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
const rows = this.getArgument('rows');
|
const rows = this.getArgument('rows');
|
||||||
if (rows !== undefined && rows > 1) {
|
if (rows !== undefined && rows > 1) {
|
||||||
return true;
|
return true;
|
||||||
@@ -37,6 +40,9 @@ export default Vue
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
level (): number {
|
||||||
|
return this.path.split('.').length;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'displayOptions',
|
'displayOptions',
|
||||||
|
|||||||
Reference in New Issue
Block a user