mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
missing props on TokenCell
This commit is contained in:
parent
3f31d78db1
commit
6f119f25f4
1 changed files with 3 additions and 3 deletions
|
@ -93,7 +93,8 @@ namespace Bit.App.Pages
|
||||||
On = false
|
On = false
|
||||||
};
|
};
|
||||||
|
|
||||||
var continueToolbarItem = new ToolbarItem(AppResources.Continue, Helpers.ToolbarImage("ion_chevron_right.png"), async () =>
|
var continueToolbarItem = new ToolbarItem(AppResources.Continue,
|
||||||
|
Helpers.ToolbarImage("ion_chevron_right.png"), async () =>
|
||||||
{
|
{
|
||||||
var token = TokenCell?.Entry.Text.Trim().Replace(" ", "");
|
var token = TokenCell?.Entry.Text.Trim().Replace(" ", "");
|
||||||
await LogInAsync(token);
|
await LogInAsync(token);
|
||||||
|
@ -240,8 +241,7 @@ namespace Bit.App.Pages
|
||||||
Margin = new Thickness(0, 0, 0, 25)
|
Margin = new Thickness(0, 0, 0, 25)
|
||||||
};
|
};
|
||||||
|
|
||||||
TokenCell = new FormEntryCell("", imageSource: "lock");
|
TokenCell = new FormEntryCell("", isPassword: true, imageSource: "lock", useLabelAsPlaceholder: true);
|
||||||
|
|
||||||
TokenCell.Entry.ReturnType = ReturnType.Go;
|
TokenCell.Entry.ReturnType = ReturnType.Go;
|
||||||
|
|
||||||
var table = new TwoFactorTable(
|
var table = new TwoFactorTable(
|
||||||
|
|
Loading…
Reference in a new issue