fix(status): add language from status when redraft

This commit is contained in:
三咲智子 2023-01-04 17:39:12 +08:00
parent 8983edd1bb
commit 154885ca96
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
2 changed files with 4 additions and 1 deletions

View file

@ -91,7 +91,7 @@ const deleteAndRedraft = async () => {
await openPublishDialog('dialog', await getDraftFromStatus(status), true)
// Go to the new status, if the page is the old status
if (lastPublishDialogStatus.value && route.matched.some(m => m.path === '/:server?/@:account/:status'))
if (lastPublishDialogStatus.value && route.name === 'status')
router.push(getStatusRoute(lastPublishDialogStatus.value))
}