summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableChassis.vue
diff options
context:
space:
mode:
authorGlukhov Mikhail <mikl@greenfil.ru>2022-12-24 12:16:53 +0300
committerGlukhov Mikhail <mikl@greenfil.ru>2023-02-14 08:18:42 +0300
commitd0b078f692fc02578b0bfbc3868ce81516c71dd3 (patch)
treeb645511c121a8c3f583b6019f0b76f868d529f6b /src/views/HardwareStatus/Inventory/InventoryTableChassis.vue
parent713dae09ac29fe53ca76e44b7b3a75f114479eca (diff)
downloadwebui-vue-d0b078f692fc02578b0bfbc3868ce81516c71dd3.tar.xz
Reducing values to a common format
I use this patch to convert all values into the format <Description>:<Value><Unit of Measure>. I put the units of measure in a separate localization area in order to use them in the sensor page in the future. Change-Id: Ic6554860c4185bc4d681a97205051799c6637b5c Signed-off-by: Glukhov Mikhail <mikl@greenfil.ru>
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableChassis.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableChassis.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableChassis.vue b/src/views/HardwareStatus/Inventory/InventoryTableChassis.vue
index b49cec7f..4c557fa2 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableChassis.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableChassis.vue
@@ -100,10 +100,16 @@
<dl>
<!-- Min power -->
<dt>{{ $t('pageInventory.table.minPowerWatts') }}:</dt>
- <dd>{{ dataFormatter(item.minPowerWatts) }}</dd>
+ <dd>
+ {{ dataFormatter(item.minPowerWatts) }}
+ {{ $t('unit.W') }}
+ </dd>
<!-- Max power -->
<dt>{{ $t('pageInventory.table.maxPowerWatts') }}:</dt>
- <dd>{{ dataFormatter(item.maxPowerWatts) }}</dd>
+ <dd>
+ {{ dataFormatter(item.maxPowerWatts) }}
+ {{ $t('unit.W') }}
+ </dd>
</dl>
</b-col>
</b-row>