1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

Removes clobbering emission of empty array. (#16682)

* Removes clobbering emission of empty array.

* Additional 'startWith' removal.
This commit is contained in:
Miles Blackwood
2025-10-09 15:47:58 -04:00
committed by GitHub
parent 6353d0e67c
commit 2a2a36ea70
3 changed files with 5 additions and 5 deletions

View File

@@ -120,7 +120,7 @@ export class VaultPopupItemsService {
.cipherListViews$(userId)
.pipe(filter((ciphers) => ciphers != null)),
this.cipherService.failedToDecryptCiphers$(userId),
this.restrictedItemTypesService.restricted$.pipe(startWith([])),
this.restrictedItemTypesService.restricted$,
]),
),
map(([ciphers, failedToDecryptCiphers, restrictions]) => {