Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps <info@camilstaps.nl>2019-08-17 12:14:51 +0300
committerCamil Staps <info@camilstaps.nl>2019-09-06 10:51:04 +0300
commit86eae7b2e09fdf52f63adf1ef134b2b0016b8f34 (patch)
tree3ceae39f1eb5ab978bf0c207b714f323b307431a /app/views/projects/forks
parent913c87c6126c0f1c80f57cf82d14b1e8fbc2397d (diff)
Fix public/private/internal fork counts
Diffstat (limited to 'app/views/projects/forks')
-rw-r--r--app/views/projects/forks/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/forks/index.html.haml b/app/views/projects/forks/index.html.haml
index 0397a7034c7..3b6e19c5058 100644
--- a/app/views/projects/forks/index.html.haml
+++ b/app/views/projects/forks/index.html.haml
@@ -1,6 +1,6 @@
.top-area
.nav-text
- - full_count_title = "#{@public_forks_count} public and #{@private_forks_count} private"
+ - full_count_title = "#{@public_forks_count} public, #{@internal_forks_count} internal and #{@private_forks_count} private"
#{pluralize(@total_forks_count, 'fork')}: #{full_count_title}
.nav-controls