Merge pull request #3805 from h3poteto/iss-3772

refs #3772 Fix account id when move settings from profile
This commit is contained in:
AkiraFukushima 2022-11-21 21:31:04 +09:00 committed by GitHub
commit 9bbd9fe780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ export default defineComponent({
;(window as any).shell.openExternal(account.value.baseURL + '/settings/profile')
break
case 'settings': {
const url = `/${id}/settings`
const url = `/${id.value}/settings`
router.push(url)
break
}