mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-02 16:45:08 +08:00
fix: missing route for user detail page (#12725)
### What problem does this PR solve? Add missing route for navigating to `/admin/users/:id` ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -396,6 +396,10 @@ const routeConfig = [
|
|||||||
path: '',
|
path: '',
|
||||||
Component: lazy(() => import('@/pages/admin/login')),
|
Component: lazy(() => import('@/pages/admin/login')),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: `${Routes.AdminUserManagement}/:id`,
|
||||||
|
Component: lazy(() => import('@/pages/admin/user-detail')),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: Routes.Admin,
|
path: Routes.Admin,
|
||||||
Component: lazy(
|
Component: lazy(
|
||||||
|
|||||||
Reference in New Issue
Block a user