mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 01:36:24 +01:00
show local date in revisions dialog + make it larger
This commit is contained in:
@@ -26,11 +26,9 @@ async function showNoteRevisionsDialog(noteId, noteRevisionId) {
|
||||
revisionItems = await server.get('notes/' + noteId + '/revisions');
|
||||
|
||||
for (const item of revisionItems) {
|
||||
const utcDateModified = utils.parseDate(item.utcDateModifiedFrom);
|
||||
|
||||
$list.append($('<option>', {
|
||||
value: item.noteRevisionId,
|
||||
text: utils.formatDateTime(utcDateModified)
|
||||
text: item.dateModifiedFrom
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user