mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix TS compilation issue on query report table config display function (#34975)
- [x] QA'd all new/changed functionality manually
This commit is contained in:
parent
a884e5472c
commit
1323781928
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ const generateReportColumnConfigsFromResults = (
|
|||
if (cellProps.column.id === "Host") {
|
||||
const hostID = cellProps.row.original.host_id as number;
|
||||
if (queryId === null) {
|
||||
return cellProps.cell.value;
|
||||
return <>cellProps.cell.value</>;
|
||||
}
|
||||
return (
|
||||
<LinkCell
|
||||
|
|
|
|||
Loading…
Reference in a new issue