From 2e49768d1e539108a9d1b96a199cd20477bb5711 Mon Sep 17 00:00:00 2001 From: Jorge Miguel Lobo Escalona Date: Wed, 19 Oct 2022 12:22:02 +0200 Subject: [PATCH] M #~: fix redirect create vnet fireedge (#2311) --- .../src/client/apps/sunstone/routesOne.js | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/fireedge/src/client/apps/sunstone/routesOne.js b/src/fireedge/src/client/apps/sunstone/routesOne.js index a8332157f8..59ec758ea4 100644 --- a/src/fireedge/src/client/apps/sunstone/routesOne.js +++ b/src/fireedge/src/client/apps/sunstone/routesOne.js @@ -451,12 +451,6 @@ const ENDPOINTS = [ title: T.Networks, icon: NetworksIcon, routes: [ - { - title: T.VirtualNetworks, - description: (params) => `#${params?.id}`, - path: PATH.NETWORK.VNETS.DETAIL, - Component: VirtualNetworksDetail, - }, { title: T.VirtualNetworks, path: PATH.NETWORK.VNETS.LIST, @@ -464,13 +458,6 @@ const ENDPOINTS = [ icon: NetworkIcon, Component: VirtualNetworks, }, - { - title: T.NetworkTemplates, - path: PATH.NETWORK.VN_TEMPLATES.LIST, - sidebar: true, - icon: NetworkTemplateIcon, - Component: VNetworkTemplates, - }, { title: (_, state) => state?.ID !== undefined @@ -481,6 +468,19 @@ const ENDPOINTS = [ path: PATH.NETWORK.VNETS.CREATE, Component: CreateVirtualNetwork, }, + { + title: T.VirtualNetworks, + description: (params) => `#${params?.id}`, + path: PATH.NETWORK.VNETS.DETAIL, + Component: VirtualNetworksDetail, + }, + { + title: T.NetworkTemplates, + path: PATH.NETWORK.VN_TEMPLATES.LIST, + sidebar: true, + icon: NetworkTemplateIcon, + Component: VNetworkTemplates, + }, { title: T.SecurityGroups, path: PATH.NETWORK.SEC_GROUPS.LIST,