We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9068c commit d9daa37Copy full SHA for d9daa37
lib/web/mage/calendar.js
@@ -322,7 +322,8 @@ define([
322
(printDate.getTime() === today.getTime() ? ' ' : '') +
323
(printDate.getTime() === currentDate.getTime() ? ' ui-state-active' : '') +
324
(otherMonth ? ' ui-priority-secondary' : '') +
325
- '" data-date="' + printDate.getDate() + '" href="#">' + printDate.getDate() + '</a>') + '</td>';
+ '" data-date="' + printDate.getDate() + '" href="#">' +
326
+ printDate.getDate() + '</a>') + '</td>';
327
printDate.setDate(printDate.getDate() + 1);
328
printDate = this._daylightSavingAdjust(printDate);
329
}
0 commit comments