mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fix: actions with debounce are not working (#10196)
This commit is contained in:
parent
7a6f12473c
commit
6fc796e454
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ export async function executeActionsForEventId(_ref, eventId, events = [], mode,
|
|||
const filteredEvents = events?.filter((event) => event?.event.eventId === eventId)?.sort((a, b) => a.index - b.index);
|
||||
|
||||
for (const event of filteredEvents) {
|
||||
await executeActionWithDebounce(_ref, event.event, mode, customVariables);
|
||||
await executeAction(_ref, event.event, mode, customVariables);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue