Browse Source

Merge pull request #6536 from nocodb/fix/webhook-body-in-v1

fix: disable webhook body configuration in EE
pull/6538/head
Raju Udava 1 year ago committed by GitHub
parent
commit
a9905e233f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/webhook/Editor.vue

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

Loading…
Cancel
Save