mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 00:33:20 +00:00
Update ios extension to use new login service lookup by uristring
This commit is contained in:
@@ -59,7 +59,7 @@ namespace Bit.iOS.Extension
|
||||
SaveBarButton.Title = AppResources.Save;
|
||||
View.BackgroundColor = new UIColor(red: 0.94f, green: 0.94f, blue: 0.96f, alpha: 1.0f);
|
||||
|
||||
NameCell.TextField.Text = Context?.Url?.Host ?? string.Empty;
|
||||
NameCell.TextField.Text = Context?.Uri?.Host ?? string.Empty;
|
||||
NameCell.TextField.ReturnKeyType = UIReturnKeyType.Next;
|
||||
NameCell.TextField.ShouldReturn += (UITextField tf) =>
|
||||
{
|
||||
@@ -67,7 +67,7 @@ namespace Bit.iOS.Extension
|
||||
return true;
|
||||
};
|
||||
|
||||
UriCell.TextField.Text = Context?.Url?.ToString() ?? string.Empty;
|
||||
UriCell.TextField.Text = Context?.UrlString ?? string.Empty;
|
||||
UriCell.TextField.KeyboardType = UIKeyboardType.Url;
|
||||
UriCell.TextField.ReturnKeyType = UIReturnKeyType.Next;
|
||||
UriCell.TextField.ShouldReturn += (UITextField tf) =>
|
||||
|
||||
Reference in New Issue
Block a user