From a0bae67a531b718d77c35421818a7e4b4fdcb2ea Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Tue, 21 Apr 2020 12:03:09 -0400 Subject: [PATCH] fix: change amount-input field type to decimal-pad + words --- src/status_im/ui/screens/wallet/send/views.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/wallet/send/views.cljs b/src/status_im/ui/screens/wallet/send/views.cljs index 7d75566e4f..edde3da2e4 100644 --- a/src/status_im/ui/screens/wallet/send/views.cljs +++ b/src/status_im/ui/screens/wallet/send/views.cljs @@ -104,7 +104,7 @@ {:style {:font-size (if small-screen? 24 38) :color (if amount-error colors/red colors/black) :flex-shrink 1} - :keyboard-type :numeric + :keyboard-type :decimal-pad :accessibility-label :amount-input :default-value amount-text :editable (not request?) @@ -163,7 +163,7 @@ {:style {:font-size (if small-screen? 24 38) :color (when amount-error colors/red) :flex-shrink 1} - :keyboard-type :numeric + :keyboard-type :decimal-pad :accessibility-label :amount-input :default-value amount-text :auto-focus true