fix: adjust Students table scroll.x to match total column width

This commit is contained in:
2026-07-07 09:40:52 +08:00
parent 693ba5d3b8
commit 24126ab3a9

View File

@@ -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={{