summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSurenNeware <sneware9@in.ibm.com>2021-01-27 19:20:22 +0300
committerDerick Montague <derick.montague@ibm.com>2021-02-04 00:40:48 +0300
commitbbf896c2ae84fc07c399c918c1c1f3f733cf6e19 (patch)
treeabcd6715c834bc2d0e33c88f85793c613ad59e3a
parentbe6858c06bfbd1e06935ad01b743c1043f74488a (diff)
downloadwebui-vue-bbf896c2ae84fc07c399c918c1c1f3f733cf6e19.tar.xz
Change system indicatorLED property
- Changed system IndicatorLED property to use LocationIndicatorActive and updated SystemStore for same. Signed-off-by: Suren Neware <sneware9@in.ibm.com> Change-Id: I0083034b7a8993074262a1e2b60c5829f8519dbe
-rw-r--r--src/store/modules/Health/SystemStore.js2
-rw-r--r--src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue8
2 files changed, 8 insertions, 2 deletions
diff --git a/src/store/modules/Health/SystemStore.js b/src/store/modules/Health/SystemStore.js
index 30ae66be..23b12d72 100644
--- a/src/store/modules/Health/SystemStore.js
+++ b/src/store/modules/Health/SystemStore.js
@@ -16,7 +16,7 @@ const SystemStore = {
system.firmwareVersion = data.BiosVersion;
system.health = data.Status.Health;
system.id = data.Id;
- system.indicatorLed = data.IndicatorLED;
+ system.locationIndicatorActive = data.LocationIndicatorActive;
system.manufacturer = data.Manufacturer;
system.model = data.Model;
system.partNumber = data.PartNumber;
diff --git a/src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue b/src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue
index d4087016..fa083a01 100644
--- a/src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue
+++ b/src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue
@@ -43,7 +43,13 @@
<br />
<!-- Indicator LED -->
<dt>{{ $t('pageHardwareStatus.table.indicatorLed') }}:</dt>
- <dd>{{ tableFormatter(item.indicatorLed) }}</dd>
+ <dd v-if="item.locationIndicatorActive === true">
+ {{ $t('global.status.on') }}
+ </dd>
+ <dd v-else-if="item.locationIndicatorActive === false">
+ {{ $t('global.status.off') }}
+ </dd>
+ <dd v-else>--</dd>
<br />
<!-- Model -->
<dt>{{ $t('pageHardwareStatus.table.model') }}:</dt>