mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
UI: Disable sort arrows in manage hosts status column (#8892)
This commit is contained in:
parent
837fef4bc4
commit
9a4cfd14b4
2 changed files with 3 additions and 6 deletions
|
|
@ -0,0 +1,2 @@
|
|||
- disable nonfunctional sort arrows that were erroniously displayed in header of Status column on
|
||||
manage hosts page
|
||||
|
|
@ -208,12 +208,7 @@ const allHostTableHeaders: IDataColumn[] = [
|
|||
Status
|
||||
</TooltipWrapper>
|
||||
);
|
||||
return (
|
||||
<HeaderCell
|
||||
value={titleWithToolTip}
|
||||
isSortedDesc={headerProps.column.isSortedDesc}
|
||||
/>
|
||||
);
|
||||
return <HeaderCell value={titleWithToolTip} disableSortBy />;
|
||||
},
|
||||
disableSortBy: true,
|
||||
accessor: "status",
|
||||
|
|
|
|||
Loading…
Reference in a new issue