1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00: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

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