mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 19:36:12 +01:00
renamed dates in code as well
This commit is contained in:
@@ -2,8 +2,8 @@ import noteDetailService from '../services/note_detail.js';
|
||||
|
||||
const $dialog = $("#note-info-dialog");
|
||||
const $noteId = $("#note-info-note-id");
|
||||
const $dateCreated = $("#note-info-date-created");
|
||||
const $dateModified = $("#note-info-date-modified");
|
||||
const $utcDateCreated = $("#note-info-date-created");
|
||||
const $utcDateModified = $("#note-info-date-modified");
|
||||
const $type = $("#note-info-type");
|
||||
const $mime = $("#note-info-mime");
|
||||
const $okButton = $("#note-info-ok-button");
|
||||
@@ -16,8 +16,8 @@ function showDialog() {
|
||||
const currentNote = noteDetailService.getCurrentNote();
|
||||
|
||||
$noteId.text(currentNote.noteId);
|
||||
$dateCreated.text(currentNote.dateCreated);
|
||||
$dateModified.text(currentNote.dateModified);
|
||||
$utcDateCreated.text(currentNote.utcDateCreated);
|
||||
$utcDateModified.text(currentNote.utcDateModified);
|
||||
$type.text(currentNote.type);
|
||||
$mime.text(currentNote.mime);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user