Commit aee28088 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'master' of github.com:gitlabhq/gitlabhq

parents 1f9b3f2e f248e4f5
...@@ -36,6 +36,7 @@ v 6.6.0 ...@@ -36,6 +36,7 @@ v 6.6.0
- Restyle Issue#show page and MR#show page - Restyle Issue#show page and MR#show page
- Ability to filter by multiple labels for Issues page - Ability to filter by multiple labels for Issues page
- Rails version to 4.0.3 - Rails version to 4.0.3
- Fixed attachment identifier displaying underneath note text (Jason Blanchard)
v 6.5.1 v 6.5.1
- Fix branch selectbox when create merge request from fork - Fix branch selectbox when create merge request from fork
......
...@@ -87,7 +87,6 @@ ul.notes { ...@@ -87,7 +87,6 @@ ul.notes {
} }
.attachment { .attachment {
font-size: 14px; font-size: 14px;
margin-top: -20px;
} }
.note-body { .note-body {
@include md-typography; @include md-typography;
...@@ -305,6 +304,7 @@ ul.notes { ...@@ -305,6 +304,7 @@ ul.notes {
@extend .col-md-4; @extend .col-md-4;
@extend .thumbnail; @extend .thumbnail;
margin-left: 45px; margin-left: 45px;
float: none;
} }
......
...@@ -69,12 +69,6 @@ class MergeRequestDiff < ActiveRecord::Base ...@@ -69,12 +69,6 @@ class MergeRequestDiff < ActiveRecord::Base
end end
end end
# When Git::Diff is not able to get diff
# because of git timeout it return this value
def broken_diffs
[Gitlab::Git::Diff::BROKEN_DIFF]
end
# Collect array of Git::Commit objects # Collect array of Git::Commit objects
# between target and source branches # between target and source branches
def unmerged_commits def unmerged_commits
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment