Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
updateStep(step: StepModel) {
const stepEl = this.findStep(step);
stepEl.classList.remove(this.css.update);
this.updateMap.set(step.connectionId, false);
new StepNode(stepEl, step as any).update();
}