mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fleet UI: Remove unintended broken sort on type column (#31264)
This commit is contained in:
parent
22147a5b46
commit
80b4c34a52
2 changed files with 3 additions and 4 deletions
1
changes/30746-remove-unintended-broken-sort
Normal file
1
changes/30746-remove-unintended-broken-sort
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fleet UI: Removed unintended broken sort on Fleet Desktop > Software > type column
|
||||
|
|
@ -72,10 +72,8 @@ export const generateSoftwareTableHeaders = (): ISoftwareTableConfig[] => {
|
|||
},
|
||||
},
|
||||
{
|
||||
Header: (cellProps: ITableHeaderProps) => (
|
||||
<HeaderCell value="Type" isSortedDesc={cellProps.column.isSortedDesc} />
|
||||
),
|
||||
disableSortBy: false,
|
||||
Header: "Type",
|
||||
disableSortBy: true,
|
||||
disableGlobalFilter: true,
|
||||
accessor: "source",
|
||||
Cell: (cellProps: ITableStringCellProps) => (
|
||||
|
|
|
|||
Loading…
Reference in a new issue