From 002990fbbc4d0f826d40a7d298a3610ba430ec95 Mon Sep 17 00:00:00 2001 From: pa Date: Tue, 10 Feb 2026 20:15:27 +0900 Subject: [PATCH] fix: refine platform column layout (#1604) --- src/views/PlayerList/columns.jsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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;