cancel says "Close" when no password field.

This commit is contained in:
Kyle Spearrin 2016-07-30 01:11:52 -04:00
parent 86b1b62fbb
commit ceef61e841
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@ namespace Bit.iOS.Extension
{
base.ViewDidLoad();
if(!Context?.Details?.HasPasswordField ?? false)
{
CancelBarButton.Title = "Close";
}
Debug.WriteLine("BW LOG, Site list ViewDidLoad.");
var sw = Stopwatch.StartNew();