Skip to content
Snippets Groups Projects
Commit 836db7c4 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] About: fix build date (display as local date)

parent 05387679
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ angular.module('cesium.modal.services', ['cesium.utils.services'])
};
// Change UTC date into user date
$scope.buildDate = moment.utc(csConfig.build).format(filterTranslations.DATE_PATTERN || 'YYYY-MM-DD HH:mm');
$scope.buildDate = moment(csConfig.build).format(filterTranslations.DATE_PATTERN || 'YYYY-MM-DD HH:mm');
})
.factory('ModalUtils', function($ionicModal, $rootScope, $q, $injector, $controller, $timeout, Device) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment