Problem with css

when I emit an event and load the table again, it automatically gives the td the style display: none.
This happens when I change the view size and I don’t understand

version 1.3

Attached capture of the problem

depend on your situation I assume your problem is not relevant with livewire, make sure your styling doesn’t change the display of the td element when you changing the breaking point (view size) in your media query.

or do something like that in your CSS file:

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
 table tbody tr td {
   display: block;
 }
/* you can add styles in any breakpoint you want to depend in your situation*/
}