From 6dd0a92d5e2ff954e4c7296781e626dc2f915374 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Mon, 2 Oct 2023 12:10:26 +0530 Subject: [PATCH] fix: disable webhook body configuration in EE Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- packages/nc-gui/components/webhook/Editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/webhook/Editor.vue b/packages/nc-gui/components/webhook/Editor.vue index 7c4ff4b45d..336fd32e29 100644 --- a/packages/nc-gui/components/webhook/Editor.vue +++ b/packages/nc-gui/components/webhook/Editor.vue @@ -72,7 +72,7 @@ let hookRef = reactive< version: 'v2', }) -const isBodyShown = ref(hookRef.version === 'v1' || (hookRef.version === 'v2' && appInfo.value.ee)) +const isBodyShown = ref(hookRef.version === 'v1') const urlTabKey = ref(isBodyShown.value ? 'body' : 'params')