From 671514c33b92adce64523044f0743d62d65d772e Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Tue, 10 Jul 2018 15:59:45 +0300 Subject: [PATCH] [#3931] fix Sign in: Cannot paste text within password field --- CHANGELOG.md | 1 + src/status_im/ui/screens/accounts/login/views.cljs | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d688bffe71..7c103020e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added - iPad support. Status is now displayed at full native resolution on iPad's +- fixed Sign in: Cannot paste text within password field [#3931] ## [0.9.22] - 2018-07-09 ### Added diff --git a/src/status_im/ui/screens/accounts/login/views.cljs b/src/status_im/ui/screens/accounts/login/views.cljs index 2e0b65bca4..a3ddfe6336 100644 --- a/src/status_im/ui/screens/accounts/login/views.cljs +++ b/src/status_im/ui/screens/accounts/login/views.cljs @@ -71,12 +71,11 @@ (re-frame/dispatch [:set-in [:accounts/login :error] ""])) :secure-text-entry true :error (when (pos? (count error)) (i18n/label (error-key error)))}]]]] - [react/view styles/processing-view - (when processing - [components/activity-indicator {:animating true}]) - (when processing + (when processing + [react/view styles/processing-view + [components/activity-indicator {:animating true}] [react/text {:style styles/sign-you-in} - (i18n/label :t/sign-you-in)])] + (i18n/label :t/sign-you-in)]]) (when-not processing [react/view {:style styles/bottom-button-container} (when-not can-navigate-back?