Browse Source

Fix the bug of edit cell demo

pull/11970/head
hongxuWei 6 years ago
committed by 偏右
parent
commit
698aa3a01a
  1. 2
      components/table/demo/edit-cell.md

2
components/table/demo/edit-cell.md

@ -141,7 +141,7 @@ class EditableTable extends React.Component {
dataIndex: 'operation',
render: (text, record) => {
return (
this.state.dataSource.length > 1
this.state.dataSource.length >= 1
? (
<Popconfirm title="Sure to delete?" onConfirm={() => this.handleDelete(record.key)}>
<a href="javascript:;">Delete</a>

Loading…
Cancel
Save