fix(EditableTable): 更新删除按钮列标题为中文

master
钟良源 2 months ago
parent de2d0d7852
commit 4b412518a2

@ -231,7 +231,7 @@ const EditableTable: React.FC<EditableTableProps> = ({
const processedColumns = [...columns]; const processedColumns = [...columns];
if (showDeleteButton && !columns.some(col => col.dataIndex === 'op')) { if (showDeleteButton && !columns.some(col => col.dataIndex === 'op')) {
processedColumns.push({ processedColumns.push({
title: 'Operation', title: '操作',
dataIndex: 'op', dataIndex: 'op',
render: (_: any, record: any) => ( render: (_: any, record: any) => (
<Button onClick={() => removeRow(record.key)} type="primary" status="danger"> <Button onClick={() => removeRow(record.key)} type="primary" status="danger">

Loading…
Cancel
Save