Hello!
When I use showsort on a wider table header alignment becomes strange. If I remove some columns it looks good.
It seems the arrow is placed to a new line in some instances:
Is there a way to fix it?
version: 4.2.21
Hello!
When I use showsort on a wider table header alignment becomes strange. If I remove some columns it looks good.
It seems the arrow is placed to a new line in some instances:
Is there a way to fix it?
version: 4.2.21
I investigated further and found the solution, maybe it helps to others as well.
Using the below in UDStyle did the trick:
.MuiTableCell-head{
white-space: nowrap;
}
I noticed this as well with one of my tables and didn’t investigate it as it only occurred on an internal facing page. Fixed the issue for me as well. Thanks!