Fix missing titles for new admin views

This commit is contained in:
Bubka
2024-02-26 08:38:02 +01:00
parent bfa1cc99c3
commit a6646b2e9d
4 changed files with 11 additions and 5 deletions

View File

@ -22,7 +22,7 @@
registerForm.post('/api/v1/users').then(response => {
const user = response.data
notify.success({ text: trans('admin.user_created') })
router.push({ name: 'admin.users.manage', params: { userId: user.info.id } })
router.push({ name: 'admin.manageUser', params: { userId: user.info.id } })
})
}
</script>