Manually pull in new state context on each button action enrichment to keep aware of state changes during button action execution

This commit is contained in:
Andrew Kingston 2022-04-01 18:36:41 +01:00
parent 6227013222
commit 2e979846c4
1 changed files with 1 additions and 0 deletions

View File

@ -346,6 +346,7 @@ export const enrichButtonActions = (actions, context) => {
// Built total context for this action // Built total context for this action
const totalContext = { const totalContext = {
...context, ...context,
state: get(stateStore),
actions: buttonContext, actions: buttonContext,
eventContext, eventContext,
} }