Fixed the issue where the recent changes page was not showing the correct date. #1296

This commit is contained in:
Jamie.Rees 2017-03-29 09:57:27 +01:00
commit a5b08a54b6
2 changed files with 2 additions and 2 deletions

View file

@ -198,7 +198,7 @@
dataType: "json",
success: function (response) {
$(response).each(function (index, item) {
item.date = moment.utc(item.data).local().format('lll');
item.date = moment.utc(item.date).local().format('lll');
var html = changesTemplate(item);
$area.append(html);
});