diff --git a/components/table/Table.tsx b/components/table/Table.tsx index d25f1ee6680c..710b9860900a 100755 --- a/components/table/Table.tsx +++ b/components/table/Table.tsx @@ -882,8 +882,8 @@ export default class Table extends React.Component, TableState< } if (!(title instanceof Function) && typeof title !== 'string' && typeof title !== 'number') { const props = title.props; - const { children } = props; if (props && props.children) { + const { children } = props; return this.getColumnTitle(children, props); } } else {