summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-07-05 16:54:33 +0100
committerPhil Hughes <me@iamphill.com>2017-07-05 16:54:33 +0100
commit19922c705ef609265cc439fb48faee28f289ee6d (patch)
tree8e1cafbd775b8e3239fa5dda2738fd51e3752c1c
parentdddfa49db6b592b79f562bca5bcd0f10280ae331 (diff)
downloadgitlab-ce-additional-commits-integer-fix.tar.gz
Fix invalid integer value when more than 1000 commitsadditional-commits-integer-fix
Closes #34711
-rw-r--r--app/views/projects/commits/_commits.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml
index cf8dffc8957..c764e35dd2a 100644
--- a/app/views/projects/commits/_commits.html.haml
+++ b/app/views/projects/commits/_commits.html.haml
@@ -12,4 +12,4 @@
- if hidden > 0
%li.alert.alert-warning
- = n_('%d additional commit has been omitted to prevent performance issues.', '%d additional commits have been omitted to prevent performance issues.', hidden) % number_with_delimiter(hidden)
+ = n_('%s additional commit has been omitted to prevent performance issues.', '%s additional commits have been omitted to prevent performance issues.', hidden) % number_with_delimiter(hidden)