fix: wrap <tr> into <tbody>

This commit is contained in:
Pavel
2025-08-01 01:31:11 +02:00
parent 975a551728
commit fc9677f419

View File

@@ -13,20 +13,22 @@
<div> <div>
<table> <table>
<tr> <tbody>
<td <tr>
use:resizeObserver={true} <td
on:resize={e => { use:resizeObserver={true}
// @ts-ignore on:resize={e => {
$dataGridRowHeight = e.detail.height + 1; // @ts-ignore
}} $dataGridRowHeight = e.detail.height + 1;
> }}
title >
<InlineButton square> title
<FontIcon icon="icon chevron-down" /> <InlineButton square>
</InlineButton> <FontIcon icon="icon chevron-down" />
</td> </InlineButton>
</tr> </td>
</tr>
</tbody>
</table> </table>
</div> </div>