fix missing nesting

This commit is contained in:
Matthias Mair 2024-04-15 23:57:41 +02:00
parent cf564becd9
commit 61342a8903
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
1 changed files with 5 additions and 1 deletions

View File

@ -455,7 +455,11 @@ export default function PartDetail() {
<Grid.Col span={8}>
<Stack gap="xs">
<table>
<PartIcons part={part} />
<tbody>
<tr>
<PartIcons part={part} />
</tr>
</tbody>
</table>
<DetailsTable fields={tl} item={part} />
</Stack>