reuse getColumnKey

This commit is contained in:
afc163 2016-04-09 15:30:24 +08:00
parent 1a91018f52
commit 0a55eb8c43

View File

@ -676,7 +676,7 @@ const Table = React.createClass({
columns = this.renderColumnsDropdown(columns);
columns = columns.map((column, i) => {
const newColumn = { ...column };
newColumn.key = newColumn.key || newColumn.dataIndex || i;
newColumn.key = this.getColumnKey(newColumn, i);
return newColumn;
});
let emptyText;