Skip to content

Commit

Permalink
fix isSubmitting prop case (mastodon#10785)
Browse files Browse the repository at this point in the history
  • Loading branch information
hinaloe authored and hiyuki2578 committed Oct 2, 2019
1 parent 364bfb2 commit eba3588
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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']),
Expand Down

0 comments on commit eba3588

Please sign in to comment.