Commit 93e9200f authored by Robert van Kints's avatar Robert van Kints
Browse files

fix: pagination fix on table with 100% width

the pagination component uses a colspan of column count + 1 breaking the table width when it is set
to a width of 100%
parent 6826b45a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -291,7 +291,7 @@ export default class Table extends PureComponent {
    return withPagination ? (
      <thead>
        <tr>
          <td colSpan={columns.length + 1}>
          <td colSpan={columns.length}>
            <TablePagination {...tablePaginationProps} />
          </td>
        </tr>