mirror of
https://github.com/zadam/trilium.git
synced 2025-01-17 20:48:12 +08:00
added noteId to file view
This commit is contained in:
parent
ba1ca506af
commit
90895f1288
2 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,7 @@ import noteDetailService from "./note_detail.js";
|
|||
|
||||
const $component = $('#note-detail-file');
|
||||
|
||||
const $fileNoteId = $("#file-note-id");
|
||||
const $fileName = $("#file-filename");
|
||||
const $fileType = $("#file-filetype");
|
||||
const $fileSize = $("#file-filesize");
|
||||
|
@ -21,6 +22,7 @@ async function show() {
|
|||
|
||||
$component.show();
|
||||
|
||||
$fileNoteId.text(currentNote.noteId);
|
||||
$fileName.text(attributeMap.originalFileName || "?");
|
||||
$fileSize.text((attributeMap.fileSize || "?") + " bytes");
|
||||
$fileType.text(currentNote.mime);
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
<div id="note-detail-file" class="note-detail-component">
|
||||
<table id="file-table">
|
||||
<tr>
|
||||
<th>Note ID:</th>
|
||||
<td id="file-note-id"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Original file name:</th>
|
||||
<td id="file-filename"></td>
|
||||
|
|
Loading…
Reference in a new issue