mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(editor): Showing errors in input pane (#4059)
* refactor(editor): removing output error reporting from input panel * refactor(editor): input panel error notification with linking back to the errored node * fix(editor): switching to the correct node after backlinking from the error in a further node * fix(editor): input pane error message font size and translation keys * fix(editor): output error message layout * fix(editor-ui): update input panel node error title translation * fix(editor-ui): achieve proper update when changing node from input error link * fix(editor-ui): adding local utility class to not break output error layout
This commit is contained in:
@@ -338,8 +338,8 @@ export default mixins(
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
activeNode(node, oldNode) {
|
||||
if (node && !oldNode && !this.isActiveStickyNode) {
|
||||
activeNode(node: INodeUi | null) {
|
||||
if (node && !this.isActiveStickyNode) {
|
||||
this.runInputIndex = -1;
|
||||
this.runOutputIndex = -1;
|
||||
this.isLinkingEnabled = true;
|
||||
|
||||
Reference in New Issue
Block a user