From 381cc079a34a56d3b6f1bd78e52086d94814df80 Mon Sep 17 00:00:00 2001 From: Vitalii Lysak Date: Fri, 22 Jul 2022 12:16:07 +0300 Subject: add motherboard6 fix others --- src/env/components/AppNavigation/sila.js | 11 +++++++++++ src/env/router/sila.js | 9 +++++++++ 2 files changed, 20 insertions(+) (limited to 'src/env') diff --git a/src/env/components/AppNavigation/sila.js b/src/env/components/AppNavigation/sila.js index 4f47342e..3319368b 100644 --- a/src/env/components/AppNavigation/sila.js +++ b/src/env/components/AppNavigation/sila.js @@ -76,6 +76,17 @@ const AppNavigationMixin = { }, ], }, + { + id: 'motherboard', + label: this.$t('appNavigation.motherboard'), + children: [ + { + id: 'motherboard/dynamic', + label: this.$t('appNavigation.dynamicInformation'), + route: '/motherboard/dynamic', + }, + ], + }, { id: 'operations', label: this.$t('appNavigation.operations'), diff --git a/src/env/router/sila.js b/src/env/router/sila.js index 4a5d5b71..dbf4369f 100644 --- a/src/env/router/sila.js +++ b/src/env/router/sila.js @@ -33,6 +33,7 @@ import FansStatic from '@/views/_sila/Fans/Static'; import ProcessorsDynamic from '@/views/_sila/Processors/Dynamic'; import MemoryDynamic from '@/views/_sila/Memory/Dynamic'; import FansDynamic from '@/views/_sila/Fans/Dynamic'; +import MotherboardDynamic from '@/views/_sila/Motherboard/Dynamic'; import i18n from '@/i18n'; const routes = [ @@ -187,6 +188,14 @@ const routes = [ title: i18n.t('appPageTitle.fans'), }, }, + { + path: 'motherboard/dynamic', + name: 'motherboard-dynamic', + component: MotherboardDynamic, + meta: { + title: i18n.t('appPageTitle.motherboard'), + }, + }, { path: '/security-and-access/sessions', name: 'sessions', -- cgit v1.2.3