[#3931] fix Sign in: Cannot paste text within password field
This commit is contained in:
parent
019027ff45
commit
671514c33b
|
@ -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
|
||||
|
|
|
@ -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?
|
||||
|
|
Loading…
Reference in New Issue