mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
refactor(editor): Remove CTA for errored node (#5857)
🔥 Remove CTA for errored node
This commit is contained in:
parent
1b8c35ab87
commit
4b11642a8c
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue