mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
notes keyboard type is "Text" for auto-cap
This commit is contained in:
parent
5950c33a43
commit
45d171e0e3
2 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue