chore(react/type_widget): fix missing tbody

This commit is contained in:
Elian Doran 2025-09-19 22:18:10 +03:00
parent d83ff641d7
commit 034073a5e1
No known key found for this signature in database

View File

@ -18,6 +18,7 @@ export default function FilePropertiesTab({ note }: { note?: FNote | null }) {
<div className="file-properties-widget">
{note && (
<table class="file-table">
<tbody>
<tr>
<th class="text-nowrap">{t("file_properties.note_id")}:</th>
<td class="file-note-id">{note.noteId}</td>
@ -70,6 +71,7 @@ export default function FilePropertiesTab({ note }: { note?: FNote | null }) {
</div>
</td>
</tr>
</tbody>
</table>
)}
</div>