diff options
-rw-r--r-- | app/views/projects/commit/_commit_box.html.haml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/projects/commit/_commit_box.html.haml b/app/views/projects/commit/_commit_box.html.haml index 4bfbbf73805..dbf95e953ab 100644 --- a/app/views/projects/commit/_commit_box.html.haml +++ b/app/views/projects/commit/_commit_box.html.haml @@ -43,10 +43,11 @@ .commit-box %h3.commit-title - = markdown(@commit.title, pipeline: :title) + -# FIXME (rspeicher): Everything about this says title, but sometimes it contains newlines? + = markdown(@commit.title, pipeline: :blob) - if @commit.description.present? .commit-description - = preserve(markdown(@commit.description)) + = markdown(@commit.description, pipeline: :blob) :coffeescript $(".commit-info-row.branches").load("#{branches_namespace_project_commit_path(@project.namespace, @project, @commit.id)}") |