Fix issues with sending direct messages from user profile (#6999)

* Clear compose textarea when starting a new direct message

Previous behaviour resulted in potentially misdirected direct messages.

* Hide search when starting to compose a direct message
This commit is contained in:
Emelia Smith
2018-04-02 13:44:19 +02:00
committed by Eugen Rochko
parent 3f51c6efaa
commit 4fd71accd4
2 changed files with 7 additions and 2 deletions

View File

@ -265,7 +265,7 @@ export default function compose(state = initialState, action) {
.set('idempotencyKey', uuid());
case COMPOSE_DIRECT:
return state
.update('text', text => `${text}@${action.account.get('acct')} `)
.update('text', text => `@${action.account.get('acct')} `)
.set('privacy', 'direct')
.set('focusDate', new Date())
.set('idempotencyKey', uuid());