1
0
Fork 1
forked from fedi/mastodon

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

This commit is contained in:
Claire 2022-12-15 17:47:43 +01:00 committed by talon
parent 07fb44636d
commit 6ee81c3bc6

View file

@ -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;
}