diff --git a/src/App/Pages/Vault/AddEditPage.xaml.cs b/src/App/Pages/Vault/AddEditPage.xaml.cs index 4a596e410..f194d947e 100644 --- a/src/App/Pages/Vault/AddEditPage.xaml.cs +++ b/src/App/Pages/Vault/AddEditPage.xaml.cs @@ -251,7 +251,7 @@ namespace Bit.App.Pages var options = new List { AppResources.Attachments }; if(_vm.EditMode) { - options.Add(_vm.Cipher.OrganizationId != null ? AppResources.Share : AppResources.Collections); + options.Add(_vm.Cipher.OrganizationId == null ? AppResources.Share : AppResources.Collections); } var selection = await DisplayActionSheet(AppResources.Options, AppResources.Cancel, _vm.EditMode ? AppResources.Delete : null, options.ToArray()); diff --git a/src/App/Pages/Vault/ViewPage.xaml.cs b/src/App/Pages/Vault/ViewPage.xaml.cs index c285f1c89..485f51ef7 100644 --- a/src/App/Pages/Vault/ViewPage.xaml.cs +++ b/src/App/Pages/Vault/ViewPage.xaml.cs @@ -154,7 +154,7 @@ namespace Bit.App.Pages return; } var options = new List { AppResources.Attachments }; - options.Add(_vm.Cipher.OrganizationId != null ? AppResources.Share : AppResources.Collections); + options.Add(_vm.Cipher.OrganizationId == null ? AppResources.Share : AppResources.Collections); var selection = await DisplayActionSheet(AppResources.Options, AppResources.Cancel, AppResources.Delete, options.ToArray()); if(selection == AppResources.Delete)