diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-29 20:05:53 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-10-30 18:30:58 +0100 |
commit | ebfe393e9cf398ad496cd48c050cbfb7acecd6ad (patch) | |
tree | c9f911a22e6e4b95152ce0b52447198afed2455f /app/javascript/flavours/glitch/features/compose/containers | |
parent | eb307ec1bdb0acd1f90ebf338b9664a9c5b49f80 (diff) |
[Glitch] Fix upload progress not communicating processing phase in web UI
Port 30ef11022487364256656efee3cee92db2c839b2 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/containers')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/containers/upload_progress_container.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/containers/upload_progress_container.js b/app/javascript/flavours/glitch/features/compose/containers/upload_progress_container.js index 0cfee96da..b18c76a43 100644 --- a/app/javascript/flavours/glitch/features/compose/containers/upload_progress_container.js +++ b/app/javascript/flavours/glitch/features/compose/containers/upload_progress_container.js @@ -4,6 +4,7 @@ import UploadProgress from '../components/upload_progress'; const mapStateToProps = state => ({ active: state.getIn(['compose', 'is_uploading']), progress: state.getIn(['compose', 'progress']), + isProcessing: state.getIn(['compose', 'is_processing']), }); export default connect(mapStateToProps)(UploadProgress); |