mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -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 {
|
} else {
|
||||||
return (<tr key={key}>
|
return (<tr key={key}>
|
||||||
<td>{key}</td>
|
<td>{key}</td>
|
||||||
<td>{value}</td>
|
<td>{`${value !== undefined ? value : ''}`}</td>
|
||||||
</tr>);
|
</tr>);
|
||||||
}
|
}
|
||||||
})}
|
})}
|
||||||
|
Loading…
Reference in New Issue
Block a user