mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-26 02:03:49 +02:00
fix datatable header reorder issue
This commit is contained in:
@@ -187,7 +187,10 @@ export const createColumns = ({
|
||||
}),
|
||||
size: 110,
|
||||
enableHiding: true,
|
||||
meta: { label: () => t('table.playerList.photonId') },
|
||||
meta: {
|
||||
label: () => t('table.playerList.photonId'),
|
||||
disableVisibilityToggle: true
|
||||
},
|
||||
sortingFn: (rowA, rowB) =>
|
||||
(rowA.original?.photonId ?? 0) - (rowB.original?.photonId ?? 0),
|
||||
cell: ({ row }) => {
|
||||
|
||||
Reference in New Issue
Block a user