This commit is contained in:
Niels Lyngsø
2024-03-15 08:19:01 +01:00
parent 3c033bc1a4
commit 380bcb1a99
2 changed files with 2 additions and 1 deletions

View File

@@ -198,7 +198,6 @@ export class UmbMediaTypeWorkspaceContext
public destroy(): void {
this.#persistedData.destroy();
this.structure.destroy();
this.#isSorting.destroy();
this.repository.destroy();
super.destroy();
}

View File

@@ -193,7 +193,9 @@ export class UmbMemberTypeWorkspaceContext
}
public destroy(): void {
this.#persistedData.destroy();
this.structure.destroy();
this.repository.destroy();
super.destroy();
}
}