Skip to content

Commit bd26ef2

Browse files
committed
fix: running state
1 parent de52586 commit bd26ef2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/store/reducers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ const reducers = {
9494
[ActionType.EVAL_EVENT]: (s: StatusState, a: Action<EvalEvent>) => ({
9595
lastError: null,
9696
loading: false,
97-
running: true,
9897
dirty: true,
98+
running: s.running,
9999
events: s.events ? s.events.concat(a.payload) : [a.payload],
100100
}),
101101
[ActionType.EVAL_FINISH]: (s: StatusState, _: Action) => ({

0 commit comments

Comments
 (0)