mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Render a host's version of osquery on its host details page (#2851)
This commit is contained in:
parent
81ccbab31f
commit
01959434cb
2 changed files with 8 additions and 0 deletions
1
changes/issue-2830-add-osquery-version-to-host-details
Normal file
1
changes/issue-2830-add-osquery-version-to-host-details
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Render a host's osquery version on the host details page
|
||||
|
|
@ -312,6 +312,7 @@ const HostDetailsPage = ({
|
|||
"memory",
|
||||
"cpu_type",
|
||||
"os_version",
|
||||
"osquery_version",
|
||||
"enroll_secret_name",
|
||||
"detail_updated_at",
|
||||
"percent_disk_space_available",
|
||||
|
|
@ -968,6 +969,12 @@ const HostDetailsPage = ({
|
|||
<span className="info-flex__header">OS</span>
|
||||
<span className="info-flex__data">{titleData.os_version}</span>
|
||||
</div>
|
||||
<div className="info-flex__item info-flex__item--title">
|
||||
<span className="info-flex__header">Osquery</span>
|
||||
<span className="info-flex__data">
|
||||
{titleData.osquery_version}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue