1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

fix more options for sharing on view/add/edit

This commit is contained in:
Kyle Spearrin
2019-06-24 17:34:00 -04:00
parent ea30373a09
commit 3ca5da55cb
2 changed files with 2 additions and 2 deletions

View File

@@ -251,7 +251,7 @@ namespace Bit.App.Pages
var options = new List<string> { 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());