diff --git a/components/table/index.jsx b/components/table/index.jsx index e0b83a4b0d..fe22e9047a 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -262,9 +262,11 @@ export default class Table extends React.Component { } }); - // Reset current prop - pagination.current = 1; - pagination.onChange(pagination.current); + if (props.pagination) { + // Reset current prop + pagination.current = 1; + pagination.onChange(pagination.current); + } const newState = { selectionDirty: false,