[fix] Pass deleted param to CiphersComponent.reload() (#2703)

This commit is contained in:
Addison Beck 2022-05-18 16:37:24 -04:00 committed by GitHub
parent eb7586c09a
commit 39af27da3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.i18nService.t(this.calculateSearchBarLocalizationString(vaultFilter))
);
this.activeFilter = vaultFilter;
await this.ciphersComponent.reload(this.buildFilter());
await this.ciphersComponent.reload(this.buildFilter(), vaultFilter.status === "trash");
this.go();
}