From 510cd8f8976ce240ca3744ee8772a45f2a8f36b2 Mon Sep 17 00:00:00 2001 From: Artem Dzhereleiko Date: Tue, 2 May 2023 11:14:11 +0300 Subject: [PATCH] UI: change alarm menu icon --- ui-ngx/src/app/core/services/menu.service.ts | 6 ++++-- .../app/modules/home/pages/alarm/alarm-routing.module.ts | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ui-ngx/src/app/core/services/menu.service.ts b/ui-ngx/src/app/core/services/menu.service.ts index 2a07528947..b33c552eb1 100644 --- a/ui-ngx/src/app/core/services/menu.service.ts +++ b/ui-ngx/src/app/core/services/menu.service.ts @@ -361,7 +361,8 @@ export class MenuService { name: 'alarm.alarms', type: 'link', path: '/alarms', - icon: 'notifications' + icon: 'mdi:alert-outline', + isMdiIcon: true }, { id: 'dashboards', @@ -813,7 +814,8 @@ export class MenuService { name: 'alarm.alarms', type: 'link', path: '/alarms', - icon: 'notifications' + icon: 'mdi:alert-outline', + isMdiIcon: true }, { id: 'dashboards', diff --git a/ui-ngx/src/app/modules/home/pages/alarm/alarm-routing.module.ts b/ui-ngx/src/app/modules/home/pages/alarm/alarm-routing.module.ts index 30a6cbb8fd..8b448f1c2d 100644 --- a/ui-ngx/src/app/modules/home/pages/alarm/alarm-routing.module.ts +++ b/ui-ngx/src/app/modules/home/pages/alarm/alarm-routing.module.ts @@ -42,7 +42,7 @@ const routes: Routes = [ title: 'alarm.alarms', breadcrumb: { label: 'alarm.alarms', - icon: 'notifications' + icon: 'mdi:alert-outline' }, isPage: true, alarmsMode: AlarmsMode.ALL