Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix forging stats unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Sep 27, 2017
1 parent 37fe581 commit a1995f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/forging/forgingStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ForgingStats extends React.Component {
statCardObjects[0].label = this.props.t('Last 24 hours');
[1, 2, 3].forEach((i) => {
statCardObjects[i].label = this.props.t(
'Last x days', { count: statCardObjects[i].days });
'Last {{count}} days', { count: statCardObjects[i].days });
});

return (
Expand Down

0 comments on commit a1995f1

Please sign in to comment.