1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[PM-12774] - don't display filters when no sends are available (#11298)

* don't display filters when no sends are available

* move logic down. add conditional class

* fix logic for send filters
This commit is contained in:
Jordan Aasen
2024-10-01 11:46:10 -07:00
committed by GitHub
parent 256c6aef5c
commit ab5a02f483
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ export class SendItemsService {
);
/**
* Observable that indicates whether the user's vault is empty.
* Observable that indicates whether the user's send list is empty.
*/
emptyList$: Observable<boolean> = this._sendList$.pipe(map((sends) => !sends.length));