File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/client/src/pages/DataView360/View/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class Volunteer extends Component {
40
40
41
41
const result = _ . map ( lastShifts , ( shift , index ) => {
42
42
return ( < TableRow key = { index } >
43
- < TableCell > { moment ( shift . from ) . format ( "YYYY- MM-DD" ) } </ TableCell >
43
+ < TableCell > { moment ( shift . from ) . format ( "MM-DD-YYYY " ) } </ TableCell >
44
44
< TableCell > { shift . assignment } </ TableCell >
45
45
</ TableRow > ) ;
46
46
@@ -77,7 +77,7 @@ class Volunteer extends Component {
77
77
< TableBody >
78
78
{ this . props . volunteer && (
79
79
< TableRow >
80
- < TableCell > { this . props . volunteer . start_date } </ TableCell >
80
+ < TableCell > { moment ( this . props . volunteer . start_date ) . format ( "MM-DD-YYYY" ) } </ TableCell >
81
81
< TableCell > { this . props . volunteer . life_hours . toFixed ( 2 ) } </ TableCell >
82
82
< TableCell > { this . props . volunteer . ytd_hours . toFixed ( 2 ) } </ TableCell >
83
83
</ TableRow >
You can’t perform that action at this time.
0 commit comments