Add missing super calls to disconnectedCallback (#17641)

This commit is contained in:
Steve Repsher
2023-08-21 06:57:38 -04:00
committed by GitHub
parent 196c15ff3e
commit bf912f7bd3
14 changed files with 14 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ export class HuiEntityEditor extends LitElement {
private _sortable?: SortableInstance;
public disconnectedCallback() {
super.disconnectedCallback();
this._destroySortable();
}