Fix desktop signin text input field

This commit is contained in:
Vitaliy Vlasov 2018-08-28 11:28:41 +03:00
parent 198596d5e6
commit 3d09252bb1
No known key found for this signature in database
GPG Key ID: A7D57C347F2B2964
1 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,7 @@
(:require [status-im.ui.components.react :as react]
[status-im.ui.components.text-input.styles :as styles]
[status-im.ui.components.colors :as colors]
[status-im.utils.platform :as platform]
[status-im.ui.components.tooltip.views :as tooltip]))
(defn text-input-with-label [{:keys [label content error style height container text] :as props}]
@ -15,9 +16,10 @@
{:style (merge styles/input style)
:placeholder-text-color colors/gray
:auto-focus true
:value text
:auto-capitalize :none}
(dissoc props :style :height))]
(dissoc props :style :height)
(when-not platform/desktop?
{:value text}))]
(when content content)]
(when error
[tooltip/tooltip error (styles/error label)])])