Move call to reset InactiveNodes to the end of the function
This commit is contained in:
parent
2a7a5e728a
commit
a4c432a64b
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,6 @@ export async function buildVertices({
|
|||
useFlowStore.getState().updateBuildStatus(verticesIds, BuildStatus.TO_BUILD);
|
||||
useFlowStore.getState().updateVerticesBuild(verticesIds);
|
||||
useFlowStore.getState().setIsBuilding(true);
|
||||
useFlowStore.getState().setInactiveNodes([]);
|
||||
|
||||
// Set each vertex state to building
|
||||
const buildResults: Array<boolean> = [];
|
||||
|
|
@ -89,6 +88,7 @@ export async function buildVertices({
|
|||
const allNodesValid = buildResults.every((result) => result);
|
||||
onBuildComplete(allNodesValid);
|
||||
useFlowStore.getState().setIsBuilding(false);
|
||||
useFlowStore.getState().setInactiveNodes([]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue