mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-24 09:40:21 -06:00
Fixed an issue where boolean values in node details of graphical explain plan were not interpreted correctly. #7662
This commit is contained in:
parent
8030bc708b
commit
3ec676194b
@ -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>);
|
||||
}
|
||||
})}
|
||||
|
Loading…
Reference in New Issue
Block a user