Skip to content

Commit

Permalink
[TablePagination] Allow more rows per pages
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 5, 2018
1 parent d43ed9a commit dc9431b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ TablePagination.defaultProps = {
component: TableCell,
labelDisplayedRows: ({ from, to, count }) => `${from}-${to} of ${count}`,
labelRowsPerPage: 'Rows per page:',
rowsPerPageOptions: [5, 10, 25],
rowsPerPageOptions: [5, 10, 25, 50],
};

export default withStyles(styles, { name: 'MuiTablePagination' })(TablePagination);

0 comments on commit dc9431b

Please sign in to comment.