diff options
author | Matija Čupić <matteeyah@gmail.com> | 2019-02-13 22:09:59 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2019-02-13 22:09:59 +0100 |
commit | 024bf066dfe121b233848f7d0841207846caec5c (patch) | |
tree | 8da6fd27eec99ffd3433ef35dc62f42492102f6d | |
parent | 17b1033850e53c1323e55cdc86e13b3d40f66897 (diff) | |
download | gitlab-ce-024bf066dfe121b233848f7d0841207846caec5c.tar.gz |
Use limited counter for builds
-rw-r--r-- | app/views/admin/runners/_runner.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml index ec57eb1ed08..4641986cb56 100644 --- a/app/views/admin/runners/_runner.html.haml +++ b/app/views/admin/runners/_runner.html.haml @@ -44,7 +44,7 @@ .table-section.section-5 .table-mobile-header{ role: 'rowheader' }= _('Jobs') .table-mobile-content - = runner.builds.count(:all) + = limited_counter_with_delimiter(runner.builds) .table-section.section-10.section-wrap .table-mobile-header{ role: 'rowheader' }= _('Tags') |