Results View: Fix display of booleans
This commit is contained in:
@@ -15,7 +15,7 @@ export default function RawTableValue(props: Props): JSX.Element {
|
|||||||
|| typeof v === 'number'
|
|| typeof v === 'number'
|
||||||
|| typeof v === 'boolean'
|
|| typeof v === 'boolean'
|
||||||
) {
|
) {
|
||||||
return <span>{v}</span>;
|
return <span>{v.toString()}</span>;
|
||||||
}
|
}
|
||||||
|
|
||||||
return renderLocation(v.url, v.label, props.databaseUri);
|
return renderLocation(v.url, v.label, props.databaseUri);
|
||||||
|
|||||||
Reference in New Issue
Block a user