[Glitch] Fix attached media uploads not being cleared when replying to a post

Port bae17ebe5e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Claire 1 year ago
parent ce84d163cc
commit 58291b31fa
  1. 5
      app/javascript/flavours/glitch/features/compose/components/upload.js
  2. 2
      app/javascript/flavours/glitch/reducers/compose.js

@ -32,6 +32,11 @@ export default class Upload extends ImmutablePureComponent {
render () {
const { media } = this.props;
if (!media) {
return null;
}
const focusX = media.getIn(['meta', 'focus', 'x']);
const focusY = media.getIn(['meta', 'focus', 'y']);
const x = ((focusX / 2) + .5) * 100;

@ -421,6 +421,8 @@ export default function compose(state = initialState, action) {
map.set('preselectDate', new Date());
map.set('idempotencyKey', uuid());
map.update('media_attachments', list => list.filter(media => media.get('unattached')));
if (action.status.get('language') && !action.status.has('translation')) {
map.set('language', action.status.get('language'));
} else {

Loading…
Cancel
Save