Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Fix - Operators In Negative Coordinate #547

Merged
merged 7 commits into from
Feb 3, 2022
Merged
Prev Previous commit
Fit view when operators array changes
  • Loading branch information
LuanEdCosta committed Feb 3, 2022
commit da07714afbf34ddfac848ccac982cc335a8256ae
2 changes: 1 addition & 1 deletion src/components/DeploymentFlow/DeploymentFlow.component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const DeploymentFlow = ({
if(operators?.length && flowInstance) {
handleFitReactFlowView(flowInstance)
}
}, [flowInstance, operators?.length])
}, [flowInstance, operators])

return (
<div className='deployment-flow'>
Expand Down