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