note history snapshots now have date from and date to

This commit is contained in:
azivner
2017-10-24 19:36:37 -04:00
parent 11bbf9e633
commit d1981eb6c3
6 changed files with 12 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ function showNoteHistoryDialog(noteId, noteHistoryId) {
globalHistoryItems = result;
for (const row of result) {
const dateModified = getDateFromTS(row.date_modified);
const dateModified = getDateFromTS(row.date_modified_to);
$("#note-history-list").append($('<option>', {
value: row.id,