mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
refactor(editor): Change node-setting's parameters order (#3435)
This commit is contained in:
parent
6bccafb355
commit
a5d2ddfa26
|
@ -198,25 +198,6 @@ export default mixins(
|
||||||
} as INodeParameters,
|
} as INodeParameters,
|
||||||
|
|
||||||
nodeSettings: [
|
nodeSettings: [
|
||||||
{
|
|
||||||
displayName: this.$locale.baseText('nodeSettings.notes.displayName'),
|
|
||||||
name: 'notes',
|
|
||||||
type: 'string',
|
|
||||||
typeOptions: {
|
|
||||||
rows: 5,
|
|
||||||
},
|
|
||||||
default: '',
|
|
||||||
noDataExpression: true,
|
|
||||||
description: this.$locale.baseText('nodeSettings.notes.description'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: this.$locale.baseText('nodeSettings.notesInFlow.displayName'),
|
|
||||||
name: 'notesInFlow',
|
|
||||||
type: 'boolean',
|
|
||||||
default: false,
|
|
||||||
noDataExpression: true,
|
|
||||||
description: this.$locale.baseText('nodeSettings.notesInFlow.description'),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
displayName: this.$locale.baseText('nodeSettings.alwaysOutputData.displayName'),
|
displayName: this.$locale.baseText('nodeSettings.alwaysOutputData.displayName'),
|
||||||
name: 'alwaysOutputData',
|
name: 'alwaysOutputData',
|
||||||
|
@ -287,6 +268,25 @@ export default mixins(
|
||||||
noDataExpression: true,
|
noDataExpression: true,
|
||||||
description: this.$locale.baseText('nodeSettings.continueOnFail.description'),
|
description: this.$locale.baseText('nodeSettings.continueOnFail.description'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: this.$locale.baseText('nodeSettings.notes.displayName'),
|
||||||
|
name: 'notes',
|
||||||
|
type: 'string',
|
||||||
|
typeOptions: {
|
||||||
|
rows: 5,
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
noDataExpression: true,
|
||||||
|
description: this.$locale.baseText('nodeSettings.notes.description'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: this.$locale.baseText('nodeSettings.notesInFlow.displayName'),
|
||||||
|
name: 'notesInFlow',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
noDataExpression: true,
|
||||||
|
description: this.$locale.baseText('nodeSettings.notesInFlow.description'),
|
||||||
|
},
|
||||||
] as INodeProperties[],
|
] as INodeProperties[],
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -423,7 +423,7 @@
|
||||||
"nodeSettings.notes.description": "Optional note to save with the node",
|
"nodeSettings.notes.description": "Optional note to save with the node",
|
||||||
"nodeSettings.notes.displayName": "Notes",
|
"nodeSettings.notes.displayName": "Notes",
|
||||||
"nodeSettings.notesInFlow.description": "If active, the note above will display in the flow as a subtitle",
|
"nodeSettings.notesInFlow.description": "If active, the note above will display in the flow as a subtitle",
|
||||||
"nodeSettings.notesInFlow.displayName": "Display note in flow?",
|
"nodeSettings.notesInFlow.displayName": "Display Note in Flow?",
|
||||||
"nodeSettings.parameters": "Parameters",
|
"nodeSettings.parameters": "Parameters",
|
||||||
"nodeSettings.retryOnFail.description": "If active, the node tries to execute again when it fails",
|
"nodeSettings.retryOnFail.description": "If active, the node tries to execute again when it fails",
|
||||||
"nodeSettings.retryOnFail.displayName": "Retry On Fail",
|
"nodeSettings.retryOnFail.displayName": "Retry On Fail",
|
||||||
|
|
Loading…
Reference in a new issue