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:
Csaba Tuncsik
2022-09-19 12:26:02 +02:00
committed by GitHub
parent 651d788ddb
commit 762e00570a
3 changed files with 30 additions and 11 deletions

View File

@@ -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;