From 3ec676194b2b464c4d874b8d24f8d100a63f3019 Mon Sep 17 00:00:00 2001 From: Pravesh Sharma Date: Thu, 18 Jul 2024 17:59:58 +0530 Subject: [PATCH] Fixed an issue where boolean values in node details of graphical explain plan were not interpreted correctly. #7662 --- web/pgadmin/static/js/Explain/Graphical.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/static/js/Explain/Graphical.jsx b/web/pgadmin/static/js/Explain/Graphical.jsx index 199f6943b3f..3dad27bb3b0 100644 --- a/web/pgadmin/static/js/Explain/Graphical.jsx +++ b/web/pgadmin/static/js/Explain/Graphical.jsx @@ -238,7 +238,7 @@ function NodeDetails({plan, download=false}) { } else { return ( {key} - {value} + {`${value !== undefined ? value : ''}`} ); } })}