From feb45664a82d219c3fe713cc12fd849eab137961 Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Tue, 18 Jul 2023 14:22:15 +0300 Subject: [PATCH] fix: fix ndv credentials watcher --- packages/editor-ui/src/components/ParameterInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/ParameterInput.vue b/packages/editor-ui/src/components/ParameterInput.vue index b6a2e216a5..c9d64b2890 100644 --- a/packages/editor-ui/src/components/ParameterInput.vue +++ b/packages/editor-ui/src/components/ParameterInput.vue @@ -1189,7 +1189,7 @@ export default defineComponent({ // Make sure to load the parameter options // directly and whenever the credentials change this.$watch( - () => this.node!.credentials, + () => this.node?.credentials, () => { void this.loadRemoteParameterOptions(); },