Skip to content

Commit

Permalink
Change display of number format to not truncate
Browse files Browse the repository at this point in the history
  • Loading branch information
solocommand committed Feb 8, 2019
1 parent fa5af37 commit 88b0371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/manage/app/templates/manage/reports.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
{{/link-to}}
</td>
<td>{{item.ad.size}}</td>
<td title="Total Views: {{item.impressions}}">{{number-format item.impressions "0a"}}</td>
<td title="Total Clicks: {{item.clicks}}">{{number-format item.clicks "0a"}}</td>
<td title="Total Views: {{item.impressions}}">{{number-format item.impressions "0,0"}}</td>
<td title="Total Clicks: {{item.clicks}}">{{number-format item.clicks "0,0"}}</td>
<td title={{item.ctr}}>{{number-format item.ctr "0.00%"}}</td>
</tr>
{{else}}
Expand Down

0 comments on commit 88b0371

Please sign in to comment.