mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-27 19:42:11 +10:00
Fix blur/focus handling with mobile form
This commit is contained in:
parent
c522ef0af9
commit
fe0de98eaf
1 changed files with 6 additions and 1 deletions
|
|
@ -120,7 +120,12 @@ class SendMessageFormComponent extends Component {
|
|||
<FormattedMessage id="SendMessageForm.sendFailed" />
|
||||
</p>
|
||||
) : null}
|
||||
<button className={css.submitButtonMobile} disabled={submitDisabled}>
|
||||
<button
|
||||
className={css.submitButtonMobile}
|
||||
disabled={submitDisabled}
|
||||
onFocus={this.handleFocus}
|
||||
onBlur={this.handleBlur}
|
||||
>
|
||||
{submitInProgress ? (
|
||||
<IconSpinner className={css.sendIconMobileInProgress} />
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue