diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-12-09 13:55:31 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-12-09 13:55:31 -0500 |
commit | 98958decce9e3a5764de609f0c730c7c5fde65d6 (patch) | |
tree | 813066f6f831ca534c6b2dd1a9a78eaba3188aab | |
parent | cfe46f485da6e45ddb9f64d471b92892579dd9b7 (diff) | |
download | gitlab-ce-rs-delimit-build-counts.tar.gz |
Add number_with_delimiter to build countsrs-delimit-build-counts
-rw-r--r-- | app/views/projects/builds/index.html.haml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/views/projects/builds/index.html.haml b/app/views/projects/builds/index.html.haml index 742676305a9..fbf2c293db8 100644 --- a/app/views/projects/builds/index.html.haml +++ b/app/views/projects/builds/index.html.haml @@ -12,17 +12,20 @@ %li{class: ('active' if @scope.nil?)} = link_to project_builds_path(@project) do Running - %span.badge.js-running-count= @all_builds.running_or_pending.count(:id) + %span.badge.js-running-count + = number_with_delimiter(@all_builds.running_or_pending.count(:id)) %li{class: ('active' if @scope == 'finished')} = link_to project_builds_path(@project, scope: :finished) do Finished - %span.badge.js-running-count= @all_builds.finished.count(:id) + %span.badge.js-running-count + = number_with_delimiter(@all_builds.finished.count(:id)) %li{class: ('active' if @scope == 'all')} = link_to project_builds_path(@project, scope: :all) do All - %span.badge.js-totalbuilds-count= @all_builds.count(:id) + %span.badge.js-totalbuilds-count + = number_with_delimiter(@all_builds.count(:id)) .gray-content-block #{(@scope || 'running').capitalize} builds from this project |