mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
Update to TypeScript 3.5.x
This commit is contained in:
@@ -62,15 +62,13 @@ export default mixins(nodeBase).extend({
|
||||
NodeIcon,
|
||||
},
|
||||
computed: {
|
||||
workflowResultDataNode (): ITaskData[] | null {
|
||||
return this.$store.getters.getWorkflowResultDataByNodeName(this.data.name);
|
||||
},
|
||||
workflowDataItems () {
|
||||
if (this.workflowResultDataNode === null) {
|
||||
const workflowResultDataNode = this.$store.getters.getWorkflowResultDataByNodeName(this.data.name);
|
||||
if (workflowResultDataNode === null) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return this.workflowResultDataNode.length;
|
||||
return workflowResultDataNode.length;
|
||||
},
|
||||
isExecuting (): boolean {
|
||||
return this.$store.getters.executingNode === this.data.name;
|
||||
|
||||
Reference in New Issue
Block a user