diff --git a/frontend/src/component/menu/__tests__/__snapshots__/routesTest.jsx.snap b/frontend/src/component/menu/__tests__/__snapshots__/routesTest.jsx.snap index cb918418a3..1d43d6bd5d 100644 --- a/frontend/src/component/menu/__tests__/__snapshots__/routesTest.jsx.snap +++ b/frontend/src/component/menu/__tests__/__snapshots__/routesTest.jsx.snap @@ -394,16 +394,6 @@ Array [ "title": "Users", "type": "protected", }, - Object { - "component": [Function], - "menu": Object { - "adminSettings": true, - }, - "parent": "/admin", - "path": "/admin/auth", - "title": "Single Sign-On", - "type": "protected", - }, Object { "component": [Function], "flag": "RE", @@ -415,6 +405,16 @@ Array [ "title": "Project Roles", "type": "protected", }, + Object { + "component": [Function], + "menu": Object { + "adminSettings": true, + }, + "parent": "/admin", + "path": "/admin/auth", + "title": "Single Sign-On", + "type": "protected", + }, Object { "component": [Function], "hidden": false, diff --git a/frontend/src/component/menu/routes.ts b/frontend/src/component/menu/routes.ts index eeadb5a731..da79cd5ecb 100644 --- a/frontend/src/component/menu/routes.ts +++ b/frontend/src/component/menu/routes.ts @@ -444,6 +444,15 @@ export const routes: IRoute[] = [ type: 'protected', menu: {}, }, + { + path: '/admin/roles', + parent: '/admin', + title: 'Project Roles', + component: ProjectRoles, + type: 'protected', + flag: RE, + menu: { adminSettings: true }, + }, { path: '/admin/auth', parent: '/admin', @@ -460,15 +469,6 @@ export const routes: IRoute[] = [ type: 'protected', menu: { adminSettings: true }, }, - { - path: '/admin/roles', - parent: '/admin', - title: 'Project Roles', - component: ProjectRoles, - type: 'protected', - flag: RE, - menu: { adminSettings: true }, - }, { path: '/admin', title: 'Admin',