collpase type and mime to same row in note info widget

This commit is contained in:
zadam 2019-09-01 09:16:08 +02:00
parent 7c60080772
commit 0c78fda531

View File

@ -3,23 +3,22 @@ import StandardWidget from "./standard_widget.js";
const TPL = ` const TPL = `
<table class="note-info-table"> <table class="note-info-table">
<tr> <tr>
<th>Note ID</th> <th>Note ID:</th>
<td class="note-info-note-id"></td> <td colspan="3" class="note-info-note-id"></td>
</tr> </tr>
<tr> <tr>
<th>Created</th> <th>Created:</th>
<td class="note-info-date-created"></td> <td colspan="3" class="note-info-date-created"></td>
</tr> </tr>
<tr> <tr>
<th>Modified</th> <th>Modified:</th>
<td class="note-info-date-modified"></td> <td colspan="3" class="note-info-date-modified"></td>
</tr> </tr>
<tr> <tr>
<th>Type</th> <th>Type:</th>
<td class="note-info-type"></td> <td class="note-info-type"></td>
</tr>
<tr> <th>MIME:</th>
<th>MIME</th>
<td class="note-info-mime"></td> <td class="note-info-mime"></td>
</tr> </tr>
</table> </table>