diff options
author | Vladimir Shushlin <vshushlin@gitlab.com> | 2019-01-17 14:25:14 +0000 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2019-01-17 14:25:14 +0000 |
commit | d6b4b33c0d63273c193b7ea4102dede3b24fa1e7 (patch) | |
tree | 1743e73bb2e564274d2970edf5c1ae8a68e5b837 /app/views | |
parent | 59ac14aa6c4f8b290975fc2313caf73fc9461ea1 (diff) | |
download | gitlab-ce-d6b4b33c0d63273c193b7ea4102dede3b24fa1e7.tar.gz |
Show CI artifacts size with 3 significant digits
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/artifacts/_tree_file.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/artifacts/_tree_file.html.haml b/app/views/projects/artifacts/_tree_file.html.haml index cfb91568061..f42d5128715 100644 --- a/app/views/projects/artifacts/_tree_file.html.haml +++ b/app/views/projects/artifacts/_tree_file.html.haml @@ -14,4 +14,4 @@ = link_to path_to_file, class: 'str-truncated' do %span= blob.name %td - = number_to_human_size(blob.size, precision: 2) + = number_to_human_size(blob.size) |