Fix missing key of column.title in Table (#9658) (#9670)

This commit is contained in:
Terence 2018-03-14 17:46:56 +08:00 committed by Wei Zhu
parent 76994bd772
commit 4458f3dde1

View File

@ -754,7 +754,7 @@ export default class Table<T> extends React.Component<TableProps<T>, TableState<
);
}
column.title = (
<span>
<span key={key}>
{column.title}
{sortButton}
{filterDropdown}