summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>