mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix style bug (#4599)
This commit is contained in:
parent
c814011c0b
commit
bbb21c3096
1 changed files with 6 additions and 4 deletions
|
|
@ -270,10 +270,12 @@ const QueryResults = ({
|
|||
<TabList>
|
||||
<Tab className={firstTabClass}>{NAV_TITLES.RESULTS}</Tab>
|
||||
<Tab disabled={!errors?.length}>
|
||||
{errors?.length > 0 && (
|
||||
<span className="count">{errors.length}</span>
|
||||
)}
|
||||
{NAV_TITLES.ERRORS}
|
||||
<span>
|
||||
{errors?.length > 0 && (
|
||||
<span className="count">{errors.length}</span>
|
||||
)}
|
||||
{NAV_TITLES.ERRORS}
|
||||
</span>
|
||||
</Tab>
|
||||
</TabList>
|
||||
<TabPanel>{renderResultsTable()}</TabPanel>
|
||||
|
|
|
|||
Loading…
Reference in a new issue