summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-09 12:00:17 +0100
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-09 12:00:17 +0100
commit9d9d2fbbc23e030416a6ebab556e87cf7014a057 (patch)
treed5869fd7390dbeb6ff020795bd9b6e5678129417
parentd51877cac821d17bd79c9c0efbd8e15b7f4c09a3 (diff)
downloadgitlab-ce-commit-limits.tar.gz
Prevent performance issuescommit-limits
-rw-r--r--app/views/projects/commits/_commit_list.html.haml2
-rw-r--r--app/views/projects/commits/_commits.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/commits/_commit_list.html.haml b/app/views/projects/commits/_commit_list.html.haml
index c0988eca6de..bac9e244d36 100644
--- a/app/views/projects/commits/_commit_list.html.haml
+++ b/app/views/projects/commits/_commit_list.html.haml
@@ -9,6 +9,6 @@
- commits.each do |commit|
= render "projects/commits/inline_commit", commit: commit, project: @project
%li.warning-row.unstyled
- #{number_with_delimiter(hidden)} additional commits have been omitted.
+ #{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues.
- else
%ul.well-list= render commits, project: @project
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml
index 787fe443ac8..a7e3c2478c2 100644
--- a/app/views/projects/commits/_commits.html.haml
+++ b/app/views/projects/commits/_commits.html.haml
@@ -18,4 +18,4 @@
- if hidden > 0
.alert.alert-warning
- #{number_with_delimiter(hidden)} additional commits have been omitted.
+ #{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues.