Use localString to show date

This commit is contained in:
Chris Blanchard 2016-10-10 21:55:15 +01:00
parent 022224ab7e
commit e64bfd1b60
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ const CompletedGather = exports.CompletedGather = React.createClass({
completionDate() { completionDate() {
let d = new Date(this.props.gather.done.time); let d = new Date(this.props.gather.done.time);
if (d) { if (d) {
return d.toLocaleTimeString(); return d.toLocaleString();
} else { } else {
return "Completed Gather" return "Completed Gather"
} }