diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-19 21:53:44 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-05-19 21:53:44 +0200 |
commit | 08a2af27c3353555d729255fc42f6d49af20ed52 (patch) | |
tree | f163dea0261fa79ca2052cd243ec9ac502b53cd2 /app/javascript | |
parent | 46811f92e4b1705da5bb52e0e9e4e9e59ea1a15e (diff) | |
parent | ae1838655876363065dd062a21064d385a90eb33 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/compose/containers/compose_form_container.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/compose/containers/compose_form_container.js b/app/javascript/mastodon/features/compose/containers/compose_form_container.js index 93a468388..37a0e8845 100644 --- a/app/javascript/mastodon/features/compose/containers/compose_form_container.js +++ b/app/javascript/mastodon/features/compose/containers/compose_form_container.js @@ -20,7 +20,7 @@ const mapStateToProps = state => ({ focusDate: state.getIn(['compose', 'focusDate']), caretPosition: state.getIn(['compose', 'caretPosition']), preselectDate: state.getIn(['compose', 'preselectDate']), - is_submitting: state.getIn(['compose', 'is_submitting']), + isSubmitting: state.getIn(['compose', 'is_submitting']), isChangingUpload: state.getIn(['compose', 'is_changing_upload']), isUploading: state.getIn(['compose', 'is_uploading']), showSearch: state.getIn(['search', 'submitted']) && !state.getIn(['search', 'hidden']), |