UI: Disable sort arrows in manage hosts status column (#8892)

This commit is contained in:
Jacob Shandling 2022-12-01 09:49:58 -08:00 committed by GitHub
parent 837fef4bc4
commit 9a4cfd14b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View file

@ -0,0 +1,2 @@
- disable nonfunctional sort arrows that were erroniously displayed in header of Status column on
manage hosts page

View file

@ -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",