mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 11:35:29 +01:00
Clear spoiler when replying to toot that doesn't also have a spoiler (#1662)
This commit is contained in:
parent
f24daa399b
commit
96715d9af5
@ -157,6 +157,9 @@ export default function compose(state = initialState, action) {
|
||||
if (action.status.get('spoiler_text').length > 0) {
|
||||
map.set('spoiler', true);
|
||||
map.set('spoiler_text', action.status.get('spoiler_text'));
|
||||
} else {
|
||||
map.set('spoiler', false);
|
||||
map.set('spoiler_text', '');
|
||||
}
|
||||
});
|
||||
case COMPOSE_REPLY_CANCEL:
|
||||
|
Loading…
Reference in New Issue
Block a user