using ISO8601 format instead of custom

This commit is contained in:
azivner
2017-12-10 15:31:43 -05:00
parent 021f02bd8c
commit cba457bd61
6 changed files with 24 additions and 23 deletions

View File

@@ -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');