renamed notefull to notecomplement

This commit is contained in:
zadam
2020-02-01 11:15:58 +01:00
parent eeedb91ef7
commit f6f7836b8e
19 changed files with 49 additions and 51 deletions

View File

@@ -16,11 +16,11 @@ export function showDialog() {
$dialog.modal();
const {note, noteFull} = appContext.getActiveTabContext();
const {note, noteComplement} = appContext.getActiveTabContext();
$noteId.text(note.noteId);
$dateCreated.text(noteFull.dateCreated);
$dateModified.text(noteFull.dateModified);
$dateCreated.text(noteComplement.dateCreated);
$dateModified.text(noteComplement.dateModified);
$type.text(note.type);
$mime.text(note.mime);
}