From 3416977dada997cabf6a887e1ff2bee0b0a05ab9 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Thu, 29 Jan 2026 17:49:04 +0100 Subject: [PATCH] Ensure "MyVault" is not identified as an organaization (#18643) (#18647) When creating a new vault item in the My Vault filter owner would not be set. (cherry picked from commit a4355dbcab2d782d3d506adc4e0adb21fb10b457) --- apps/desktop/src/vault/app/vault-v3/vault.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 efb7e4de70f..698c442dd8f 100644 --- a/apps/desktop/src/vault/app/vault-v3/vault.component.ts +++ b/apps/desktop/src/vault/app/vault-v3/vault.component.ts @@ -953,7 +953,7 @@ export class VaultComponent implements OnInit, OnDestroy, CopyClickListener { this.addOrganizationId = collections[0].organizationId; this.addCollectionIds = [this.activeFilter.collectionId]; } - } else if (this.activeFilter.organizationId) { + } else if (this.activeFilter.organizationId && this.activeFilter.organizationId !== "MyVault") { this.addOrganizationId = this.activeFilter.organizationId; } else { // clear out organizationId when the user switches to a personal vault filter