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: {
|
||||
isMultiLineParameter () {
|
||||
if (this.level > 4) {
|
||||
return true;
|
||||
}
|
||||
const rows = this.getArgument('rows');
|
||||
if (rows !== undefined && rows > 1) {
|
||||
return true;
|
||||
@@ -37,6 +40,9 @@ export default Vue
|
||||
|
||||
return false;
|
||||
},
|
||||
level (): number {
|
||||
return this.path.split('.').length;
|
||||
},
|
||||
},
|
||||
props: [
|
||||
'displayOptions',
|
||||
|
||||
Reference in New Issue
Block a user