Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(reports): remove * 1e6
Browse files Browse the repository at this point in the history
Closes #1207
  • Loading branch information
Christine Yu committed Sep 9, 2015
1 parent edc7880 commit b7faccc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/scripts/reports/templates/reports.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h4 class="panel-title" data-translate>
{{ project.values.file_count | number }}
</td>
<td class="text-right">
{{ project.values.file_size * 1e6 | size}}
{{ project.values.file_size | size}}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -104,7 +104,7 @@ <h4 class="panel-title" data-translate>
{{ project.values.file_count | number }}
</td>
<td class="text-right">
{{ project.values.file_size * 1e6 | size}}
{{ project.values.file_size | size}}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -142,7 +142,7 @@ <h4 class="panel-title" data-translate>
{{ project.values.file_count | number }}
</td>
<td class="text-right">
{{ project.values.file_size * 1e6 | size}}
{{ project.values.file_size | size}}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -185,7 +185,7 @@ <h4 class="panel-title" data-translate>
{{ project.values.file_count | number }}
</td>
<td class="text-right">
{{ project.values.file_size * 1e6 | size }}
{{ project.values.file_size | size }}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -261,7 +261,7 @@ <h4 class="panel-title" data-translate>
{{ project.values.file_count | number }}
</td>
<td class="text-right">
{{ project.values.file_size * 1e6 | size }}
{{ project.values.file_size | size }}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -347,7 +347,7 @@ <h4 class="panel-title" data-translate>
{{ x.values.file_count | number }}
</td>
<td class="text-right">
{{ x.values.file_size * 1e6 | size }}
{{ x.values.file_size | size }}
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -384,7 +384,7 @@ <h4 class="panel-title" data-translate>
{{ x.values.file_count | number }}
</td>
<td class="text-right">
{{ x.values.file_size * 1e6 | size }}
{{ x.values.file_size | size }}
</td>
</tr>
</tbody>
Expand Down

0 comments on commit b7faccc

Please sign in to comment.