Browse Source

Merge pull request #6112 from nocodb/fix/webhook-test

fix: test webhook on condition
pull/6114/head
Raju Udava 1 year ago committed by GitHub
parent
commit
e27a4d2b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nocodb/src/helpers/webhookHelpers.ts

2
packages/nocodb/src/helpers/webhookHelpers.ts

@ -271,7 +271,7 @@ export async function invokeWebhook(
return;
}
if (hook.condition) {
if (hook.condition && !testHook) {
if (isBulkOperation) {
const filteredData = [];
for (const data of newData) {

Loading…
Cancel
Save