From 18a87fe260317c679732d0ec271c036b9806448f Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 15 Jul 2021 12:46:36 +0200 Subject: [PATCH] fix(devtools): avoid grouping patches and mutations with finished actions --- src/devtools/plugin.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devtools/plugin.ts b/src/devtools/plugin.ts index 526a0b27..468a1ea8 100644 --- a/src/devtools/plugin.ts +++ b/src/devtools/plugin.ts @@ -270,6 +270,7 @@ function addDevtools(app: App, store: Store) { }) after((result) => { + activeAction = undefined api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { @@ -287,6 +288,7 @@ function addDevtools(app: App, store: Store) { }) onError((error) => { + activeAction = undefined api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { -- 2.47.2