Small fixes and fix that some nodes changed incoming data

This commit is contained in:
Jan Oberhauser
2019-08-01 18:22:48 +02:00
parent fc4952f022
commit a8f1f9c0ba
10 changed files with 30 additions and 30 deletions

View File

@@ -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) {