Skip to content

Commit

Permalink
Fixed an issue where boolean values in node details of graphical expl…
Browse files Browse the repository at this point in the history
…ain plan were not interpreted correctly. pgadmin-org#7662
  • Loading branch information
pravesh-sharma authored Jul 18, 2024
1 parent 8030bc7 commit 3ec6761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/pgadmin/static/js/Explain/Graphical.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function NodeDetails({plan, download=false}) {
} else {
return (<tr key={key}>
<td>{key}</td>
<td>{value}</td>
<td>{`${value !== undefined ? value : ''}`}</td>
</tr>);
}
})}
Expand Down

0 comments on commit 3ec6761

Please sign in to comment.