Merge branch 'includes-projects-to-render-issue-notes' into 'master'

Fix IssuesController#show degradation including project on loaded notes

See merge request !6540
This commit is contained in:
Yorick Peterse 2016-09-27 19:14:11 +00:00
commit 52711b5321
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ v 8.12.2 (unreleased)
- Fix Import/Export not recognising correctly the imported services.
- Fix snippets pagination
- Fix List-Unsubscribe header in emails
- Fix IssuesController#show degradation including project on loaded notes
- Fix an issue with the "Commits" section of the cycle analytics summary. !6513
- Fix errors importing project feature and milestone models using GitLab project import
- Make JWT messages Docker-compatible

View File

@ -54,7 +54,7 @@ class Projects::IssuesController < Projects::ApplicationController
end
def show
raw_notes = @issue.notes_with_associations.fresh
raw_notes = @issue.notes.inc_relations_for_view.fresh
@notes = Banzai::NoteRenderer.
render(raw_notes, @project, current_user, @path, @project_wiki, @ref)