mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Hide updated time when loading OS versions table data (#25200)
This commit is contained in:
parent
1eae4f6e1b
commit
459a393f21
2 changed files with 3 additions and 1 deletions
2
changes/24629-ui-os-updates-table
Normal file
2
changes/24629-ui-os-updates-table
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
- Fixed UI bug on the "Controls" page where incorrect timestamp information was displayed while the
|
||||
"Current versions" table was loading.
|
||||
|
|
@ -145,7 +145,7 @@ const CurrentVersionSection = ({
|
|||
<div className={baseClass}>
|
||||
<SectionHeader
|
||||
title="Current versions"
|
||||
subTitle={generateSubTitleText()}
|
||||
subTitle={isLoadingOsVersions ? null : generateSubTitleText()}
|
||||
wrapperCustomClass={`${baseClass}__header`}
|
||||
/>
|
||||
{renderTable()}
|
||||
|
|
|
|||
Loading…
Reference in a new issue