Fixed an issue where boolean values in node details of graphical explain plan were not interpreted correctly. #7662

This commit is contained in:
Pravesh Sharma 2024-07-18 17:59:58 +05:30 committed by GitHub
parent 8030bc708b
commit 3ec676194b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>);
}
})}