Skip to content

Commit 0bbcade

Browse files
committed
Merge branch '339/consistent-date-formatting' of github.com:CodeForPhilly/paws-data-pipeline
2 parents 6c33055 + ca461e5 commit 0bbcade

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
@@ -49,7 +49,7 @@ class volunteerActivity extends Component {
4949
<TableCell>{
5050
(volunteer.start_date === "N/A")
5151
? "N/A"
52-
: moment(volunteer.start_date).format("MM-DD-YYYY")
52+
: moment(volunteer.start_date).format("YYYY-MM-DD")
5353
}
5454
</TableCell>
5555
<TableCell>{volunteer.life_hours.toFixed(2)}</TableCell>

0 commit comments

Comments
 (0)