diff --git a/components/table/index.jsx b/components/table/index.jsx index c7c28aab17..67cd1a9c53 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -295,11 +295,14 @@ var AntTable = React.createClass({ ; } - if (!column.originalTitle) { - column.originalTitle = column.title; + let originTitle; + if (Array.isArray(column.title)) { + originTitle = column.title[0]; + } else { + originTitle = column.title; } column.title = [ - column.originalTitle, + originTitle, sortButton, filterDropdown ];