From d0b078f692fc02578b0bfbc3868ce81516c71dd3 Mon Sep 17 00:00:00 2001 From: Glukhov Mikhail Date: Sat, 24 Dec 2022 12:16:53 +0300 Subject: Reducing values to a common format I use this patch to convert all values into the format :. 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 --- src/views/HardwareStatus/Inventory/InventoryTableChassis.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/views/HardwareStatus/Inventory/InventoryTableChassis.vue') 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 @@
{{ $t('pageInventory.table.minPowerWatts') }}:
-
{{ dataFormatter(item.minPowerWatts) }}
+
+ {{ dataFormatter(item.minPowerWatts) }} + {{ $t('unit.W') }} +
{{ $t('pageInventory.table.maxPowerWatts') }}:
-
{{ dataFormatter(item.maxPowerWatts) }}
+
+ {{ dataFormatter(item.maxPowerWatts) }} + {{ $t('unit.W') }} +
-- cgit v1.2.3