fixes, separation of notefull from noteshort

This commit is contained in:
zadam
2020-01-25 14:37:12 +01:00
parent 516e6c35da
commit ac7d5f2e81
18 changed files with 64 additions and 103 deletions

View File

@@ -49,14 +49,16 @@ class NoteInfoWidget extends StandardWidget {
const $type = this.$body.find(".note-info-type");
const $mime = this.$body.find(".note-info-mime");
const {noteFull} = this.tabContext;
$noteId.text(note.noteId);
$dateCreated
.text(note.dateCreated)
.attr("title", note.dateCreated);
.text(noteFull.dateCreated)
.attr("title", noteFull.dateCreated);
$dateModified
.text(note.dateModified)
.attr("title", note.dateCreated);
.text(noteFull.dateModified)
.attr("title", noteFull.dateCreated);
$type.text(note.type);