From 3095e5728ae446c4f1a249c4cc952811d7e7fc7c Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 27 Jun 2019 08:11:38 +0200 Subject: [PATCH] Fix issue that it opened the webhook urls every time credentials got selected --- packages/editor-ui/src/components/NodeWebhooks.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/NodeWebhooks.vue b/packages/editor-ui/src/components/NodeWebhooks.vue index f7d538895e..2128037fcf 100644 --- a/packages/editor-ui/src/components/NodeWebhooks.vue +++ b/packages/editor-ui/src/components/NodeWebhooks.vue @@ -115,7 +115,7 @@ export default mixins( }, watch: { node () { - this.isMinimized = false; + this.isMinimized = true; }, }, });