1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-10 01:08:23 +02:00

notes keyboard type is "Text" for auto-cap

This commit is contained in:
Kyle Spearrin 2017-09-19 16:34:29 -04:00
parent 5950c33a43
commit 45d171e0e3
2 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,7 @@ namespace Bit.App.Pages
private void Init()
{
NotesCell = new FormEditorCell(height: 180);
NotesCell.Editor.Keyboard = Keyboard.Text;
TotpCell = new FormEntryCell(AppResources.AuthenticatorKey, nextElement: NotesCell.Editor,
useButton: _deviceInfo.HasCamera);

View File

@ -57,6 +57,7 @@ namespace Bit.App.Pages
}
NotesCell = new FormEditorCell(height: 180);
NotesCell.Editor.Keyboard = Keyboard.Text;
NotesCell.Editor.Text = login.Notes?.Decrypt(login.OrganizationId);
TotpCell = new FormEntryCell(AppResources.AuthenticatorKey, nextElement: NotesCell.Editor,