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

@@ -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,