mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 13:56:11 +01:00
renamed dates in code as well
This commit is contained in:
@@ -26,7 +26,7 @@ async function showDialog() {
|
||||
const dayEl = $('<div>').append($('<b>').html(utils.formatDate(dateDay))).append(changesListEl);
|
||||
|
||||
for (const change of dayChanges) {
|
||||
const formattedTime = utils.formatTime(utils.parseDate(change.dateModifiedTo));
|
||||
const formattedTime = utils.formatTime(utils.parseDate(change.utcDateModifiedTo));
|
||||
|
||||
let noteLink;
|
||||
|
||||
@@ -51,7 +51,7 @@ function groupByDate(result) {
|
||||
const dayCache = {};
|
||||
|
||||
for (const row of result) {
|
||||
let dateDay = utils.parseDate(row.dateModifiedTo);
|
||||
let dateDay = utils.parseDate(row.utcDateModifiedTo);
|
||||
dateDay.setHours(0);
|
||||
dateDay.setMinutes(0);
|
||||
dateDay.setSeconds(0);
|
||||
|
||||
Reference in New Issue
Block a user