mirror of
https://github.com/zadam/trilium.git
synced 2025-12-24 00:59:55 +01:00
using ISO8601 format instead of custom
This commit is contained in:
@@ -27,7 +27,7 @@ const noteHistory = (function() {
|
||||
historyItems = await server.get('notes-history/' + noteId);
|
||||
|
||||
for (const item of historyItems) {
|
||||
const dateModified = getDateFromTS(item.date_modified_from);
|
||||
const dateModified = parseDate(item.date_modified_from);
|
||||
|
||||
$("#note-history-list").append($('<option>', {
|
||||
value: item.note_history_id,
|
||||
|
||||
Reference in New Issue
Block a user