mirror of
https://github.com/bitwarden/android.git
synced 2025-01-12 11:17:30 +03:00
close folder page, not cancel
This commit is contained in:
parent
57ec5cb036
commit
ca3c380493
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
if(Device.RuntimePlatform == Device.iOS || Device.RuntimePlatform == Device.Windows)
|
if(Device.RuntimePlatform == Device.iOS || Device.RuntimePlatform == Device.Windows)
|
||||||
{
|
{
|
||||||
ToolbarItems.Add(new DismissModalToolBarItem(this, AppResources.Cancel));
|
ToolbarItems.Add(new DismissModalToolBarItem(this, AppResources.Close));
|
||||||
}
|
}
|
||||||
|
|
||||||
Title = AppResources.Folders;
|
Title = AppResources.Folders;
|
||||||
|
|
|
@ -76,7 +76,7 @@ namespace Bit.App.Utilities
|
||||||
|
|
||||||
public static string ToolbarImage(string image)
|
public static string ToolbarImage(string image)
|
||||||
{
|
{
|
||||||
if (Device.RuntimePlatform == Device.iOS || Device.RuntimePlatform == Device.Android)
|
if(Device.RuntimePlatform == Device.iOS || Device.RuntimePlatform == Device.Android)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue