1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

[SG-230] “All Items” and “Trash” missing from Organization Vault (#795)

This commit is contained in:
Robyn MacCallum 2022-05-09 14:47:28 -04:00 committed by GitHub
parent 694de6ffdb
commit 31beae1783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ export class StatusFilterComponent {
@Input() activeFilter: VaultFilter;
get show() {
return !this.hideFavorites && !this.hideTrash;
return !(this.hideFavorites && this.hideTrash);
}
applyFilter(cipherStatus: CipherStatus) {