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')