fix(editor): Fix NDV unexpected re-render (#7532)

This commit is contained in:
Csaba Tuncsik
2023-10-30 09:22:08 +01:00
committed by GitHub
parent 233683ce1a
commit 2853fcff73
2 changed files with 5 additions and 5 deletions

View File

@@ -69,7 +69,7 @@
@unlinkRun="() => onUnlinkRun('input')"
@runChange="onRunInputIndexChange"
@openSettings="openSettings"
@select="onInputSelect"
@changeInputNode="onInputNodeChange"
@execute="onNodeExecute"
@tableMounted="onInputTableMounted"
@itemHover="onInputItemHover"
@@ -710,7 +710,7 @@ export default defineComponent({
pane,
});
},
onInputSelect(value: string, index: number) {
onInputNodeChange(value: string, index: number) {
this.runInputIndex = -1;
this.isLinkingEnabled = true;
this.selectedInput = value;