Skip to content

Commit

Permalink
Merge pull request #2988 from Geoportail-Luxembourg/rmichaelis-patch-1
Browse files Browse the repository at this point in the history
format date dd/mm/yyyy
  • Loading branch information
rmichaelis authored Dec 15, 2022
2 parents 65266ff + a41d71e commit 13d4a5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ exports.prototype.openFeedbackAnf = function(lot) {
* @export
*/
exports.prototype.formatDate = function(datetime) {
return new Date(Date.parse(datetime)).toLocaleDateString()
return new Date(Date.parse(datetime)).toLocaleDateString("en-GB");
}

/**
Expand Down

0 comments on commit 13d4a5d

Please sign in to comment.