Fix pagination section for rtl direction
is it possible to have a workflow to reproduce the bug please ? 馃槂
I experimented a bug also here.
When using pagination with rtl I have this :

Instead of this :

To make it work I have to overwrite the default Pagination component with style direction:ltr :
const components = {
Pagination: props => (
<TablePagination {...props} style={{ direction: "ltr" }} />
)
};
is it possible to have a workflow to reproduce the bug please ? 馃槂
I didn't see this comment before. To reproduce wrap table with a div with direction: 'ltr' style.
This is done with 1.23.4.
so what's the best way to make the table work in rtl direction?
Most helpful comment
I experimented a bug also here.

When using pagination with rtl I have this :
Instead of this :

To make it work I have to overwrite the default Pagination component with style
direction:ltr: