Table Repeater doesn't look like table
I'm on Filament 4.1
In css I see that thead is display none.

Solution:Jump to solution
It looks like your container isn’t wide enough to display the table. Core switches to a stacked view below the lg container query. If you need it as a table below that point you’ll need to add the smaller size in a custom theme.
6 Replies
Seems to work just fine in a sandbox environment. How'd you define your model?
It’s a custom form, no model attached
Surely the data is persisted in some way?
Yes, it’s the stylesheet that is giving the problem in latest 4.1
HTML tries to make a table
Css hides thead and places td vertical
Solution
It looks like your container isn’t wide enough to display the table. Core switches to a stacked view below the lg container query. If you need it as a table below that point you’ll need to add the smaller size in a custom theme.
We placed it in a bigger colspan group. Works now! Thanks