about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/compose/containers/upload_container.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-11 21:22:17 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-12 14:01:47 +0100
commit9255bfb908f660889f54d4fd5ea92279b09d8cd1 (patch)
tree86e52f258a09927cb0483a1917d43eb6177ad69e /app/javascript/flavours/glitch/features/compose/containers/upload_container.js
parente2315876f4c7bf591c535f10628fe6e145505a84 (diff)
[Glitch] Add the ability to edit media attachment metadata for any unattached media
Port 31005aad12c6a915a00501765a6dab25878326cb to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/containers/upload_container.js')
-rw-r--r--app/javascript/flavours/glitch/features/compose/containers/upload_container.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/containers/upload_container.js b/app/javascript/flavours/glitch/features/compose/containers/upload_container.js
index d6256fe96..f3ca4ce7b 100644
--- a/app/javascript/flavours/glitch/features/compose/containers/upload_container.js
+++ b/app/javascript/flavours/glitch/features/compose/containers/upload_container.js
@@ -5,7 +5,6 @@ import { submitCompose } from 'flavours/glitch/actions/compose';
 
 const mapStateToProps = (state, { id }) => ({
   media: state.getIn(['compose', 'media_attachments']).find(item => item.get('id') === id),
-  isEditingStatus: state.getIn(['compose', 'id']) !== null,
 });
 
 const mapDispatchToProps = dispatch => ({