File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/frontend/editor-ui/src/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import type {
15
15
import { useDebounce } from ' @/composables/useDebounce' ;
16
16
import { OnClickOutside } from ' @vueuse/components' ;
17
17
import { useI18n } from ' @n8n/i18n' ;
18
+ import { useNDVStore } from ' @/stores/ndv.store' ;
18
19
19
20
interface Props {
20
21
rootNode: INodeUi ;
@@ -47,7 +48,7 @@ const nodeType = computed(() =>
47
48
);
48
49
49
50
const nodeData = computed (() => workflowsStore .getNodeByName (props .rootNode .name ));
50
-
51
+ const ndvStore = useNDVStore ();
51
52
const workflow = computed (() => workflowsStore .getCurrentWorkflow ());
52
53
53
54
const nodeInputIssues = computed (() => {
@@ -175,7 +176,7 @@ function showNodeInputsIssues() {
175
176
}
176
177
177
178
watch (
178
- nodeData ,
179
+ [ nodeData , ndvStore . activeNode ] ,
179
180
debounce (
180
181
() =>
181
182
setTimeout (() => {
You can’t perform that action at this time.
0 commit comments