diff --git a/components/table/index.jsx b/components/table/index.jsx index 51bbfa2932..e0b83a4b0d 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -505,6 +505,9 @@ export default class Table extends React.Component { className: 'ant-table-selection-column', }; } + if (columns.some(column => column.fixed === 'left' || column.fixed === true)) { + selectionColumn.fixed = 'left'; + } if (columns[0] && columns[0].key === 'selection-column') { columns[0] = selectionColumn; } else {