diff --git a/src/App/Pages/Vault/AddEditPageViewModel.cs b/src/App/Pages/Vault/AddEditPageViewModel.cs index 0852a5bbf..7a2dd875c 100644 --- a/src/App/Pages/Vault/AddEditPageViewModel.cs +++ b/src/App/Pages/Vault/AddEditPageViewModel.cs @@ -342,6 +342,11 @@ namespace Bit.App.Pages if (CloneMode) { Cipher.Name += " - " + AppResources.Clone; + // If not allowing personal ownership, update cipher's org Id to prompt downstream changes + if (Cipher.OrganizationId == null && !AllowPersonal) + { + Cipher.OrganizationId = OrganizationId; + } } } else