Fix compare crash after decorator refactoring
This commit is contained in:
parent
0296121f08
commit
501ca8e6e8
2 changed files with 5 additions and 2 deletions
|
@ -52,6 +52,8 @@ class CommitsController < ApplicationController
|
||||||
@commit = result[:commit]
|
@commit = result[:commit]
|
||||||
@diffs = result[:diffs]
|
@diffs = result[:diffs]
|
||||||
@line_notes = []
|
@line_notes = []
|
||||||
|
|
||||||
|
@commits = CommitDecorator.decorate(@commits)
|
||||||
end
|
end
|
||||||
|
|
||||||
def patch
|
def patch
|
||||||
|
|
|
@ -24,8 +24,9 @@
|
||||||
|
|
||||||
|
|
||||||
- unless @commits.empty?
|
- unless @commits.empty?
|
||||||
%h4 Commits (#{@commits.count})
|
%div.ui-box
|
||||||
%ul.unstyled= render @commits
|
%h5.small Commits (#{@commits.count})
|
||||||
|
%ul.unstyled= render @commits
|
||||||
|
|
||||||
- unless @diffs.empty?
|
- unless @diffs.empty?
|
||||||
%h4 Diff
|
%h4 Diff
|
||||||
|
|
Loading…
Reference in a new issue