You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a partial view with root element <tr>
But the gem is wrapping this partial view with a <div>
<table>
<tbody>
<div>
<tr> ... </tr>
</div>
</tbody>
</table>
Which eventually will cause the partial view to be rendered outside of the table
(Let's say it's invalid HTML)