mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
⚡ Small fixes and fix that some nodes changed incoming data
This commit is contained in:
@@ -123,7 +123,7 @@ export default mixins(nodeBase, workflowHelpers).extend({
|
||||
},
|
||||
nodeSubtitle (): string | undefined {
|
||||
if (this.nodeType !== null && this.nodeType.subtitle !== undefined) {
|
||||
return this.workflow.getSimpleParameterValue(this.data as INode, this.nodeType.subtitle);
|
||||
return this.workflow.getSimpleParameterValue(this.data as INode, this.nodeType.subtitle) as string | undefined;
|
||||
}
|
||||
|
||||
if (this.data.parameters.operation !== undefined) {
|
||||
|
||||
@@ -466,7 +466,6 @@ export default mixins(
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Vue.set(this.nodeValues, 'parameters', JSON.parse(JSON.stringify(this.node.parameters)));
|
||||
} else {
|
||||
this.nodeValid = false;
|
||||
|
||||
Reference in New Issue
Block a user