Skip to content

Commit 9d9f9a2

Browse files
authored
Merge pull request #341 from CodeForPhilly/339/consistent-date-formatting
Start date now in YYYY-MM-DD format
2 parents 564e3a4 + ca461e5 commit 9d9f9a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/src/pages/DataView360/View/components/VolunteerActivity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class volunteerActivity extends Component {
5353
<TableCell>{
5454
(volunteer.start_date === "N/A")
5555
? "N/A"
56-
: moment(volunteer.start_date).format("MM-DD-YYYY")
56+
: moment(volunteer.start_date).format("YYYY-MM-DD")
5757
}
5858
</TableCell>
5959
<TableCell>{volunteer.life_hours.toFixed(2)}</TableCell>

0 commit comments

Comments
 (0)