summaryrefslogtreecommitdiff
path: root/src/env
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-08-19 12:23:37 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-08-19 12:23:37 +0300
commitb48f10ff093fc631761d25200b671803410564a5 (patch)
tree757d9bef16b2f91c0fbb8775d4c0456ed505dead /src/env
parent924984aef67f97e74857789c412ae798bd0bd47c (diff)
downloadwebui-vue-b48f10ff093fc631761d25200b671803410564a5.tar.xz
remove PCI devices to Inventory
Diffstat (limited to 'src/env')
-rw-r--r--src/env/components/AppNavigation/sila.js5
-rw-r--r--src/env/router/sila.js9
2 files changed, 0 insertions, 14 deletions
diff --git a/src/env/components/AppNavigation/sila.js b/src/env/components/AppNavigation/sila.js
index 31538b98..50aaf996 100644
--- a/src/env/components/AppNavigation/sila.js
+++ b/src/env/components/AppNavigation/sila.js
@@ -31,11 +31,6 @@ const AppNavigationMixin = {
label: this.$t('appNavigation.dateTime'),
route: '/date-time',
},
- {
- id: 'pci-devices',
- label: this.$t('appNavigation.pciDevices'),
- route: '/pci-devices',
- },
],
},
{
diff --git a/src/env/router/sila.js b/src/env/router/sila.js
index 539f3c16..e7c4b19c 100644
--- a/src/env/router/sila.js
+++ b/src/env/router/sila.js
@@ -36,7 +36,6 @@ import FansDynamic from '@/views/_sila/Fans/Dynamic';
import MotherboardDynamic from '@/views/_sila/Motherboard/Dynamic';
import PowerStatic from '@/views/_sila/Power/Static';
import PowerDynamic from '@/views/_sila/Power/Dynamic';
-import PciDevices from '@/views/_sila/PciDevices';
import i18n from '@/i18n';
@@ -337,14 +336,6 @@ const routes = [
},
},
{
- path: '/pci-devices',
- name: 'pci-devices',
- component: PciDevices,
- meta: {
- title: i18n.t('appPageTitle.pciDevices'),
- },
- },
- {
path: '*',
name: 'page-not-found',
component: PageNotFound,