From 64b3e965c6a9fa055718d453c5cd2d08e5995ab4 Mon Sep 17 00:00:00 2001 From: Alex <33497058+bexsoft@users.noreply.github.com> Date: Tue, 5 Jul 2022 11:08:18 -0500 Subject: [PATCH] Change Support menu positon (#2160) Signed-off-by: Benjamin Perez --- portal-ui/src/screens/Console/valid-routes.ts | 57 +++++++++---------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/portal-ui/src/screens/Console/valid-routes.ts b/portal-ui/src/screens/Console/valid-routes.ts index 23027bcd6..b7e46472a 100644 --- a/portal-ui/src/screens/Console/valid-routes.ts +++ b/portal-ui/src/screens/Console/valid-routes.ts @@ -163,6 +163,34 @@ export const validRoutes = ( }, ], }, + { + component: NavLink, + to: IAM_PAGES.NOTIFICATIONS_ENDPOINTS, + name: "Notifications", + icon: LambdaIcon, + id: "lambda", + }, + { + component: NavLink, + to: IAM_PAGES.TIERS, + name: "Tiers", + icon: TiersIcon, + id: "tiers", + }, + { + component: NavLink, + to: IAM_PAGES.SITE_REPLICATION, + name: "Site Replication", + icon: RecoverIcon, + id: "sitereplication", + }, + { + component: NavLink, + to: IAM_PAGES.SETTINGS, + name: "Configurations", + id: "configurations", + icon: SettingsIcon, + }, { name: "Support", id: "support", @@ -213,35 +241,6 @@ export const validRoutes = ( }, ], }, - - { - component: NavLink, - to: IAM_PAGES.NOTIFICATIONS_ENDPOINTS, - name: "Notifications", - icon: LambdaIcon, - id: "lambda", - }, - { - component: NavLink, - to: IAM_PAGES.TIERS, - name: "Tiers", - icon: TiersIcon, - id: "tiers", - }, - { - component: NavLink, - to: IAM_PAGES.SITE_REPLICATION, - name: "Site Replication", - icon: RecoverIcon, - id: "sitereplication", - }, - { - component: NavLink, - to: IAM_PAGES.SETTINGS, - name: "Configurations", - id: "configurations", - icon: SettingsIcon, - }, { component: NavLink, to: IAM_PAGES.LICENSE,