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)