Fix being stuck in edit mode when deleting the edited status (#22126)

local
Claire 1 year ago committed by GitHub
parent 8556a649d5
commit ebf1d74e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/javascript/mastodon/reducers/compose.js

@ -431,6 +431,8 @@ export default function compose(state = initialState, action) {
case TIMELINE_DELETE:
if (action.id === state.get('in_reply_to')) {
return state.set('in_reply_to', null);
} else if (action.id === state.get('id')) {
return state.set('id', null);
} else {
return state;
}

Loading…
Cancel
Save