Browse Source

fix: test webhook on condition

pull/6112/head
Anbarasu 1 year ago
parent
commit
19e6075f54
  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