From 24126ab3a9215f2a510c320c849fbcaf0072365a Mon Sep 17 00:00:00 2001 From: wangziqi Date: Tue, 7 Jul 2026 09:40:52 +0800 Subject: [PATCH] fix: adjust Students table scroll.x to match total column width --- apps/admin/src/pages/Students/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/admin/src/pages/Students/index.tsx b/apps/admin/src/pages/Students/index.tsx index f1e7f9a..dfff12c 100644 --- a/apps/admin/src/pages/Students/index.tsx +++ b/apps/admin/src/pages/Students/index.tsx @@ -442,7 +442,7 @@ const StudentsPage: React.FC = () => { dataSource={data} rowKey="id" loading={loading} - scroll={{ x: 1300 }} + scroll={{ x: 1410 }} pagination={{ pageSize: 15, showTotal: (total) => `共 ${total} 人` }} rowClassName={(record: any) => (record.status === 'archived' ? 'archived-row' : '')} rowSelection={{