feat(reply): navigate to thread on publish (#852)

This commit is contained in:
Piotrek Tomczewski 2023-01-07 23:18:15 +01:00 committed by GitHub
parent c1aac9d2dc
commit 1817afdb23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -159,6 +159,8 @@ async function publish() {
status = await masto.statuses.create(payload)
else
status = await masto.statuses.update(draft.editingStatus.id, payload)
if (draft.params.inReplyToId)
navigateToStatus({ status })
draft = initial()
emit('published', status)