1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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) {