We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6743e75 commit 199356bCopy full SHA for 199356b
src/client/src/pages/DataView360/components/Volunteer.js
@@ -63,8 +63,8 @@ class Volunteer extends Component {
63
{ this.props.volunteer && (
64
<StyledTableRow>
65
<TableCell>{this.props.volunteer.start_date}</TableCell>
66
- <TableCell>{this.props.volunteer.life_hours}</TableCell>
67
- <TableCell>{this.props.volunteer.ytd_hours}</TableCell>
+ <TableCell>{this.props.volunteer.life_hours.toFixed(2)}</TableCell>
+ <TableCell>{this.props.volunteer.ytd_hours.toFixed(2)}</TableCell>
68
</StyledTableRow>
69
)}
70
</TableBody>
0 commit comments