added noteId to file view

This commit is contained in:
zadam 2019-01-27 23:10:37 +01:00
parent ba1ca506af
commit 90895f1288
2 changed files with 6 additions and 0 deletions

View file

@ -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);

View file

@ -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>