Fixed binding issue

This commit is contained in:
saurabhg772244
2025-01-23 14:58:16 +05:30
parent b09f2e836a
commit 202ef31071

View File

@@ -64,6 +64,10 @@ export class ClassDB implements DiagramDB {
this.setLink = this.setLink.bind(this);
this.bindFunctions = this.bindFunctions.bind(this);
this.clear = this.clear.bind(this);
this.setTooltip = this.setTooltip.bind(this);
this.setClickEvent = this.setClickEvent.bind(this);
this.setCssStyle = this.setCssStyle.bind(this);
}
private splitClassNameAndType(_id: string) {