From 9442b8d9e78145f8af10394c7a10f4a8bc13ca3f Mon Sep 17 00:00:00 2001 From: psdp <4315882+psdp@users.noreply.github.com> Date: Mon, 23 Apr 2018 14:09:38 +0000 Subject: [PATCH] Wrong password hint that shows while signing transaction is slightly misplaced [#3411] --- src/status_im/ui/screens/wallet/send/views.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/status_im/ui/screens/wallet/send/views.cljs b/src/status_im/ui/screens/wallet/send/views.cljs index 731091d42f..9a43c0f124 100644 --- a/src/status_im/ui/screens/wallet/send/views.cljs +++ b/src/status_im/ui/screens/wallet/send/views.cljs @@ -56,9 +56,9 @@ :placeholder-text-color components.styles/color-gray4 :on-change-text #(re-frame/dispatch [:wallet.send/set-password %]) :style styles/password - :accessibility-label :enter-password-input}]]] - (when wrong-password? - [tooltip/tooltip (i18n/label :t/wrong-password)])])) + :accessibility-label :enter-password-input}] + (when wrong-password? + [tooltip/tooltip (i18n/label :t/wrong-password)])]]])) ;; "Cancel" and "Sign Transaction >" buttons, signing with password (defview signing-buttons [cancel-handler sign-handler & [sign-label]]