Skip to content

Commit 199356b

Browse files
committed
Fix volunteer hours display
1 parent 6743e75 commit 199356b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/src/pages/DataView360/components/Volunteer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ class Volunteer extends Component {
6363
{ this.props.volunteer && (
6464
<StyledTableRow>
6565
<TableCell>{this.props.volunteer.start_date}</TableCell>
66-
<TableCell>{this.props.volunteer.life_hours}</TableCell>
67-
<TableCell>{this.props.volunteer.ytd_hours}</TableCell>
66+
<TableCell>{this.props.volunteer.life_hours.toFixed(2)}</TableCell>
67+
<TableCell>{this.props.volunteer.ytd_hours.toFixed(2)}</TableCell>
6868
</StyledTableRow>
6969
)}
7070
</TableBody>

0 commit comments

Comments
 (0)