[pve-devel] [PATCH v2 widget-toolkit] ui: SMART: fix eslint error and show correct value

Matthias Heiserer m.heiserer at proxmox.com
Fri Feb 24 13:10:07 CET 2023


Signed-off-by: Matthias Heiserer <m.heiserer at proxmox.com>
---

Sorry for the long delay and the overall confusion!
This is the v2 of https://lists.proxmox.com/pipermail/pve-devel/2023-February/055798.html
The second arrow function spans multiple lines, that's because it really does not fit on a single one
and previous attempts to reduce the size didn't work out.

 src/window/DiskSmart.js | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/window/DiskSmart.js b/src/window/DiskSmart.js
index b538ea1..af2a023 100644
--- a/src/window/DiskSmart.js
+++ b/src/window/DiskSmart.js
@@ -159,12 +159,17 @@ Ext.define('Proxmox.window.DiskSmart', {
 	    {
 		name: 'real-value',
 		// FIXME remove with next major release (PBS 3.0)
-		calculate: data => (data.normalized ?? false) ? data.raw : data.value,
+		calculate: data => data.raw,
 	    },
 	    {
 		name: 'real-normalized',
 		// FIXME remove with next major release (PBS 3.0)
-		calculate: data => data.normalized ?? data.raw,
+		calculate: data => {
+		    if (data.normalized === undefined || data.raw === undefined) {
+			return data.value;
+		    }
+		    return data.normalized;
+		},
 	    },
 	],
 	idProperty: 'name',
-- 
2.30.2





More information about the pve-devel mailing list