mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 11:56:01 +01:00
using ISO8601 format instead of custom
This commit is contained in:
@@ -18,7 +18,7 @@ const eventLog = (function() {
|
||||
listEl.html('');
|
||||
|
||||
for (const event of result) {
|
||||
const dateTime = formatDateTime(getDateFromTS(event.date_added));
|
||||
const dateTime = formatDateTime(parseDate(event.date_added));
|
||||
|
||||
if (event.note_id) {
|
||||
const noteLink = link.createNoteLink(event.note_id).prop('outerHTML');
|
||||
|
||||
Reference in New Issue
Block a user