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
path: root/app/views
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2017-06-08 14:17:43 +0300
committerGrzegorz Bizon <grzegorz@gitlab.com>2017-06-08 14:17:43 +0300
commit1490d65e4541f8fdf4fc8257b0621bdd750dd904 (patch)
tree2e44f30aa03a5c2ddc04f257b40c8fc60111d178 /app/views
parent1f98beba79b16fc0167f8b3396b58d047edade37 (diff)
parentdbffaaa97e7a195dc5421237392788a03a6b763a (diff)
Merge branch 'blob-load-all-data' into 'master'
Blob#load_all_data! doesn’t need an argument See merge request !11977
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/diffs/viewers/_text.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/diffs/viewers/_text.html.haml b/app/views/projects/diffs/viewers/_text.html.haml
index e4b89671724..120d3540223 100644
--- a/app/views/projects/diffs/viewers/_text.html.haml
+++ b/app/views/projects/diffs/viewers/_text.html.haml
@@ -1,5 +1,5 @@
- blob = diff_file.blob
-- blob.load_all_data!(diff_file.repository)
+- blob.load_all_data!
- total_lines = blob.lines.size
- total_lines -= 1 if total_lines > 0 && blob.lines.last.blank?
- if diff_view == :parallel