@@ -70,8 +70,8 @@ import { hasPermission } from "../../../common/SecureComponent/SecureComponent";
7070import MenuToggle from "./MenuToggle" ;
7171import ConsoleMenuList from "./ConsoleMenuList" ;
7272import RegisterMenuIcon from "../../../icons/SidebarMenus/RegisterMenuIcon" ;
73- import DiagnosticsMenuIcon from "../../../icons/SidebarMenus/DiagnosticsMenuIcon " ;
74- import InspectMenuIcon from "../../../icons/SidebarMenus/InspectMenuIcon " ;
73+ import SettingsIcon from "../../../icons/SettingsIcon " ;
74+ import WatchIcon from "../../../icons/WatchIcon " ;
7575
7676const drawerWidth = 245 ;
7777
@@ -196,20 +196,7 @@ const Menu = ({
196196 to : IAM_PAGES . POLICIES ,
197197 icon : AccessMenuIcon ,
198198 } ,
199- {
200- component : NavLink ,
201- to : IAM_PAGES . NOTIFICATIONS_ENDPOINTS ,
202- name : "Notification Endpoints" ,
203- icon : LambdaIcon ,
204- id : "lambda" ,
205- } ,
206- {
207- component : NavLink ,
208- to : IAM_PAGES . TIERS ,
209- name : "Tiers" ,
210- icon : TiersIcon ,
211- id : "tiers" ,
212- } ,
199+
213200 {
214201 name : "Monitoring" ,
215202 id : "tools" ,
@@ -243,7 +230,13 @@ const Menu = ({
243230 icon : TraceMenuIcon ,
244231 component : NavLink ,
245232 } ,
246-
233+ {
234+ name : "Watch" ,
235+ id : "watch" ,
236+ component : NavLink ,
237+ icon : WatchIcon ,
238+ to : IAM_PAGES . TOOLS_WATCH ,
239+ } ,
247240 {
248241 name : "Drives" ,
249242 id : "monitorDrives" ,
@@ -253,14 +246,6 @@ const Menu = ({
253246 } ,
254247 ] ,
255248 } ,
256- {
257- name : "Health" ,
258- id : "health" ,
259- component : NavLink ,
260- icon : HealthMenuIcon ,
261- to : IAM_PAGES . HEALTH ,
262- children : [ ] ,
263- } ,
264249 {
265250 name : "Support" ,
266251 id : "support" ,
@@ -274,10 +259,10 @@ const Menu = ({
274259 to : IAM_PAGES . REGISTER_SUPPORT ,
275260 } ,
276261 {
277- name : "Diagnostic " ,
262+ name : "Health " ,
278263 id : "diagnostics" ,
279264 component : NavLink ,
280- icon : DiagnosticsMenuIcon ,
265+ icon : HealthMenuIcon ,
281266 to : IAM_PAGES . TOOLS_DIAGNOSTICS ,
282267 } ,
283268 {
@@ -287,20 +272,21 @@ const Menu = ({
287272 icon : PerformanceMenuIcon ,
288273 to : IAM_PAGES . TOOLS_SPEEDTEST ,
289274 } ,
275+
290276 // {
291277 // name: "Call Home",
292278 // id: "callhome",
293279 // component: NavLink,
294280 // icon: CallHomeMenuIcon,
295281 // to: IAM_PAGES.CALL_HOME,
296282 // },
297- {
298- name : "Inspect" ,
299- id : "inspect" ,
300- component : NavLink ,
301- icon : InspectMenuIcon ,
302- to : IAM_PAGES . TOOLS_WATCH ,
303- } ,
283+ // {
284+ // name: "Inspect",
285+ // id: "inspect",
286+ // component: NavLink,
287+ // icon: InspectMenuIcon,
288+ // to: IAM_PAGES.TOOLS_WATCH,
289+ // },
304290 // {
305291 // name: "Profile",
306292 // id: "profile",
@@ -318,6 +304,34 @@ const Menu = ({
318304 icon : LicenseIcon ,
319305 forceDisplay : true ,
320306 } ,
307+ {
308+ name : "Settings" ,
309+ id : "settings" ,
310+ icon : SettingsIcon ,
311+ children : [
312+ {
313+ component : NavLink ,
314+ to : IAM_PAGES . SETTINGS ,
315+ name : "Configurations" ,
316+ id : "configurations" ,
317+ icon : SettingsIcon ,
318+ } ,
319+ {
320+ component : NavLink ,
321+ to : IAM_PAGES . NOTIFICATIONS_ENDPOINTS ,
322+ name : "Notifications" ,
323+ icon : LambdaIcon ,
324+ id : "lambda" ,
325+ } ,
326+ {
327+ component : NavLink ,
328+ to : IAM_PAGES . TIERS ,
329+ name : "Tiers" ,
330+ icon : TiersIcon ,
331+ id : "tiers" ,
332+ } ,
333+ ] ,
334+ } ,
321335 ] ;
322336
323337 let operatorMenus : IMenuItem [ ] = [
0 commit comments