Skip to content
Snippets Groups Projects
Commit d6873797 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix typo

parent dbae8062
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ export default function compose(state = initialState, action) {
return state.set('is_submitting', true);
case constants.COMPOSE_SUBMIT_SUCCESS:
return state.withMutations(map => {
map.set('text', '').set('is_submitting', false),set('in_reply_to', null);
map.set('text', '').set('is_submitting', false).set('in_reply_to', null);
});
case constants.COMPOSE_SUBMIT_FAIL:
return state.set('is_submitting', false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment