1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Fix filter ‘No Folder’ check (#2895)

This commit is contained in:
Robyn MacCallum
2022-06-13 07:16:04 -04:00
committed by GitHub
parent e12d28d14a
commit e8a1c60ed5

View File

@@ -583,7 +583,7 @@ export class VaultComponent implements OnInit, OnDestroy {
cipherPassesFilter = cipher.type === this.activeFilter.cipherType;
}
if (
this.activeFilter.selectedFolderId != null &&
this.activeFilter.selectedFolder &&
this.activeFilter.selectedFolderId != "none" &&
cipherPassesFilter
) {