fix(builder/monitor): Fix `# of runs` count on first load (#7558)
Return mutated copy rather than in-place mutated `flowRuns` in `refreshFlowRuns(..)` Fixes #7507pull/7513/head^2
parent
7de49dfbe5
commit
470c738732
|
@ -82,7 +82,7 @@ const Monitor = () => {
|
||||||
else {
|
else {
|
||||||
flowRuns.push(flowRun)
|
flowRuns.push(flowRun)
|
||||||
}
|
}
|
||||||
return flowRuns
|
return [...flowRuns]
|
||||||
}));
|
}));
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue