diff --git a/packages/nc-gui/components/webhook/Editor.vue b/packages/nc-gui/components/webhook/Editor.vue index d2dba9bbc9..a77751852b 100644 --- a/packages/nc-gui/components/webhook/Editor.vue +++ b/packages/nc-gui/components/webhook/Editor.vue @@ -520,6 +520,10 @@ onMounted(async () => { } }, 50) }) + +const isConditionSupport = computed(() => { + return !hookRef.eventOperation.includes('bulk') +})