1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

Fix for not implemented ngOnDestroy method in vault items component (#8708)

This commit is contained in:
SmithThe4th
2024-04-11 19:42:42 +01:00
committed by GitHub
parent 59392418d1
commit c7ea35280d

View File

@@ -52,7 +52,8 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
}
ngOnDestroy(): void {
throw new Error("Method not implemented.");
this.destroy$.next();
this.destroy$.complete();
}
async load(filter: (cipher: CipherView) => boolean = null, deleted = false) {