summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <theephil@gmail.com>2015-03-30 19:31:13 +0100
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-04-13 13:11:46 +0300
commit0851bf56b37303ffcc6262a558e8f9e823d352b5 (patch)
tree78829f23a97c3d76041128eb7f3efb986d1b816b
parent7ff7e28a41e0ce333a764edfaee4bb1d3f2169fd (diff)
downloadgitlab-ce-0851bf56b37303ffcc6262a558e8f9e823d352b5.tar.gz
Fixed issue where only 25 commits would load in file listings
-rw-r--r--app/views/projects/refs/logs_tree.js.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/refs/logs_tree.js.haml b/app/views/projects/refs/logs_tree.js.haml
index 49ce6c0888e..35c15cf3a9e 100644
--- a/app/views/projects/refs/logs_tree.js.haml
+++ b/app/views/projects/refs/logs_tree.js.haml
@@ -15,5 +15,5 @@
if(current_url == log_url) {
// Load 10 more commit log for each file in tree
// if we still on the same page
- ajaxGet('#{logs_file_namespace_project_ref_path(@project.namespace, @project, @ref, @path || '/', offset: (@offset + @limit))}');
+ ajaxGet('#{logs_file_namespace_project_ref_path(@project.namespace, @project, @ref, @path || '', offset: (@offset + @limit))}');
}