refactor(editor): Remove CTA for errored node (#5857)

🔥 Remove CTA for errored node
This commit is contained in:
Iván Ovejero 2023-03-31 11:27:27 +02:00 committed by GitHub
parent 1b8c35ab87
commit 4b11642a8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 9 deletions

View file

@ -227,9 +227,6 @@
interpolate: { nodeName: node.name }, interpolate: { nodeName: node.name },
}) })
}} }}
<n8n-link @click="goToErroredNode">
{{ $locale.baseText('nodeErrorView.inputPanel.previousNodeError.text') }}
</n8n-link>
</n8n-text> </n8n-text>
<NodeErrorView <NodeErrorView
v-else v-else
@ -1308,11 +1305,6 @@ export default mixins(externalHooks, genericHelpers, nodeHelpers, pinData).exten
this.workflowsStore.updateNodeProperties(updateInformation); this.workflowsStore.updateNodeProperties(updateInformation);
} }
}, },
goToErroredNode() {
if (this.node) {
this.ndvStore.activeNodeName = this.node.name;
}
},
setDisplayMode() { setDisplayMode() {
if (!this.activeNode) return; if (!this.activeNode) return;

View file

@ -794,7 +794,6 @@
"nodeErrorView.theErrorCauseIsTooLargeToBeDisplayed": "The error cause is too large to be displayed", "nodeErrorView.theErrorCauseIsTooLargeToBeDisplayed": "The error cause is too large to be displayed",
"nodeErrorView.time": "Time", "nodeErrorView.time": "Time",
"nodeErrorView.inputPanel.previousNodeError.title": "Error running node '{nodeName}'", "nodeErrorView.inputPanel.previousNodeError.title": "Error running node '{nodeName}'",
"nodeErrorView.inputPanel.previousNodeError.text": "View error",
"nodeHelpers.credentialsUnset": "Credentials for '{credentialType}' are not set.", "nodeHelpers.credentialsUnset": "Credentials for '{credentialType}' are not set.",
"nodeSettings.alwaysOutputData.description": "If active, will output a single, empty item when the output would have been empty. Use to prevent the workflow finishing on this node.", "nodeSettings.alwaysOutputData.description": "If active, will output a single, empty item when the output would have been empty. Use to prevent the workflow finishing on this node.",
"nodeSettings.alwaysOutputData.displayName": "Always Output Data", "nodeSettings.alwaysOutputData.displayName": "Always Output Data",