mirror of
https://github.com/zadam/trilium.git
synced 2025-10-06 05:25:37 +08:00
chore(client): fix a table nesting issue
This commit is contained in:
parent
4dbc76790a
commit
c38bf09af0
1 changed files with 46 additions and 44 deletions
|
@ -37,6 +37,7 @@ export default function NoteInfoTab({ note }: TabContext) {
|
||||||
<div className="note-info-widget">
|
<div className="note-info-widget">
|
||||||
{note && (
|
{note && (
|
||||||
<table className="note-info-widget-table">
|
<table className="note-info-widget-table">
|
||||||
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{t("note_info_widget.note_id")}:</th>
|
<th>{t("note_info_widget.note_id")}:</th>
|
||||||
<td>{note.noteId}</td>
|
<td>{note.noteId}</td>
|
||||||
|
@ -84,6 +85,7 @@ export default function NoteInfoTab({ note }: TabContext) {
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue