[pve-devel] [PATCH proxmox-widget-toolkit] Fix Unnecessarry parentheses error
Noel Ullreich
n.ullreich at proxmox.com
Thu Feb 23 11:14:41 CET 2023
As is, the code will throw an `ERR : line 162 col 22: no-extra-parens -
Unnecessary parentheses around expression. (*)`. Since `data.normalized`
will be evaluated as false if it is null anyway, adding a nullish operator
`??` is not needed.
Signed-off-by: Noel Ullreich <n.ullreich at proxmox.com>
---
src/window/DiskSmart.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/window/DiskSmart.js b/src/window/DiskSmart.js
index b538ea1..834f065 100644
--- a/src/window/DiskSmart.js
+++ b/src/window/DiskSmart.js
@@ -159,7 +159,7 @@ 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.normalized ? data.raw : data.value,
},
{
name: 'real-normalized',
--
2.30.2
More information about the pve-devel
mailing list