From 6e74bf851159bbcf7bcc75d937e87427f832db32 Mon Sep 17 00:00:00 2001 From: Leslie Xiong Date: Thu, 11 Dec 2025 10:39:17 -0500 Subject: [PATCH] fixed filter route not being preserved when clicking on vault item --- apps/desktop/src/vault/app/vault-v3/vault.component.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/apps/desktop/src/vault/app/vault-v3/vault.component.ts b/apps/desktop/src/vault/app/vault-v3/vault.component.ts index cbc8c5c866d..8f1214c2338 100644 --- a/apps/desktop/src/vault/app/vault-v3/vault.component.ts +++ b/apps/desktop/src/vault/app/vault-v3/vault.component.ts @@ -922,19 +922,13 @@ export class VaultComponent implements OnInit, OnDestroy, CopyClickListener { queryParams = { action: this.action, cipherId: this.cipherId, - favorites: this.favorites ? true : null, - type: this.type, - folderId: this.folderId, - collectionId: this.collectionId, - deleted: this.deleted ? true : null, - organizationId: this.organizationId, - myVaultOnly: this.myVaultOnly, }; } this.router .navigate([], { relativeTo: this.route, queryParams: queryParams, + queryParamsHandling: "merge", replaceUrl: true, }) .catch(() => {});