summaryrefslogtreecommitdiff
path: root/src/views
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 /src/views
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
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Health/HardwareStatus/HardwareStatusTableStystem.vue8
1 files changed, 7 insertions, 1 deletions
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>