diff --git a/src/views/PlayerList/columns.jsx b/src/views/PlayerList/columns.jsx index ebff9f45..2991e139 100644 --- a/src/views/PlayerList/columns.jsx +++ b/src/views/PlayerList/columns.jsx @@ -140,7 +140,7 @@ export const createColumns = ({ id: 'status', accessorFn: (row) => row?.ref?.statusDescription, header: () => t('table.playerList.status'), - size:200, + size: 200, minSize: 100, meta: { stretch: true @@ -290,10 +290,6 @@ export const createColumns = ({ id: 'platform', header: () => t('table.playerList.platform'), size: 90, - meta: { - stretch: true - }, - minSize: 20, enableSorting: false, cell: ({ row }) => { const userRef = row.original?.ref; @@ -302,11 +298,11 @@ export const createColumns = ({ const platformIcon = platform === 'standalonewindows' ? ( - + ) : platform === 'android' ? ( - + ) : platform === 'ios' ? ( - + ) : platform ? ( {String(platform)} ) : null;