diff --git a/packages/editor-ui/src/components/Error/NodeViewError.vue b/packages/editor-ui/src/components/Error/NodeViewError.vue index 4c86eb2571..9b721eaecf 100644 --- a/packages/editor-ui/src/components/Error/NodeViewError.vue +++ b/packages/editor-ui/src/components/Error/NodeViewError.vue @@ -37,9 +37,9 @@ Data below may contain sensitive information. Proceed with caution when sharing.
- - - +
+ +
-
+
-
+
- - - + Copy Item Path @@ -266,6 +264,12 @@ export default mixins( }; }, computed: { + hasNodeRun(): boolean { + return Boolean(this.node && this.workflowRunData && this.workflowRunData.hasOwnProperty(this.node.name)); + }, + hasRunError(): boolean { + return Boolean(this.node && this.workflowRunData && this.workflowRunData[this.node.name] && this.workflowRunData[this.node.name][this.runIndex] && this.workflowRunData[this.node.name][this.runIndex].error); + }, workflowRunning (): boolean { return this.$store.getters.isActionActive('workflowRunning'); },