compose reducer: fix cancelling reply/quote
ci/woodpecker/push/woodpecker Pipeline was successful Details

pull/38/head
Ariadne Conill 2022-12-26 05:39:30 +00:00
parent 8b6e2ed562
commit c6a4f42a37
1 changed files with 2 additions and 2 deletions

View File

@ -442,8 +442,6 @@ export default function compose(state = initialState, action) {
map.set('spoiler_text', '');
}
});
case COMPOSE_REPLY_CANCEL:
state = state.setIn(['advanced_options', 'threaded_mode'], false);
case COMPOSE_QUOTE:
return state.withMutations(map => {
map.set('id', null);
@ -460,6 +458,8 @@ export default function compose(state = initialState, action) {
map.set('preselectDate', new Date());
map.set('idempotencyKey', uuid());
});
case COMPOSE_REPLY_CANCEL:
state = state.setIn(['advanced_options', 'threaded_mode'], false);
case COMPOSE_QUOTE_CANCEL:
case COMPOSE_RESET:
return state.withMutations(map => {