Minor fixes

This commit is contained in:
fbsanchez 2021-02-02 18:55:38 +01:00
parent 906ac7f13f
commit 4d00270b78
3 changed files with 9 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -646,6 +646,13 @@ export default class VisualConsole {
// Create lines.
this.buildRelations();
// Re-attach all connected lines if any.
this.elements.forEach(item => {
if (item instanceof Line) {
this.refreshLink(item);
}
});
this.containerRef.addEventListener("click", this.handleContainerClick);
}