all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH proxmox-widget-toolkit] Fix Unnecessarry parentheses error
@ 2023-02-23 10:14 Noel Ullreich
  2023-02-23 10:20 ` Noel Ullreich
  0 siblings, 1 reply; 2+ messages in thread
From: Noel Ullreich @ 2023-02-23 10:14 UTC (permalink / raw)
  To: pve-devel

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@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





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-02-23 10:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-23 10:14 [pve-devel] [PATCH proxmox-widget-toolkit] Fix Unnecessarry parentheses error Noel Ullreich
2023-02-23 10:20 ` Noel Ullreich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal