31 lines
1.1 KiB
Diff
Executable File
31 lines
1.1 KiB
Diff
Executable File
From a84af7701f9b8c9804a1d3be96810218f676748a Mon Sep 17 00:00:00 2001
|
|
From: "Chen.Zhao" <zhao.chen@luxshare-ict.com>
|
|
Date: Wed, 11 Dec 2024 10:28:29 +0800
|
|
Subject: [PATCH] Remove inventory page for mobile project.
|
|
|
|
---
|
|
src/components/AppNavigation/AppNavigationMixin.js | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/components/AppNavigation/AppNavigationMixin.js b/src/components/AppNavigation/AppNavigationMixin.js
|
|
index b33b24b..342eafd 100644
|
|
--- a/src/components/AppNavigation/AppNavigationMixin.js
|
|
+++ b/src/components/AppNavigation/AppNavigationMixin.js
|
|
@@ -55,11 +55,13 @@ const AppNavigationMixin = {
|
|
label: this.$t('appNavigation.hardwareStatus'),
|
|
icon: 'iconHealth',
|
|
children: [
|
|
+ /* Comment out unnecessary inventory, justin 202411
|
|
{
|
|
id: 'inventory',
|
|
label: this.$t('appNavigation.inventory'),
|
|
route: '/hardware-status/inventory',
|
|
},
|
|
+ */
|
|
{
|
|
id: 'sensors',
|
|
label: this.$t('appNavigation.sensors'),
|
|
--
|
|
2.25.1
|
|
|