Commit 5f2d097f authored by Fatih Acet's avatar Fatih Acet Committed by Rémy Coutable

Merge branch '23557-remove-extra-line-for-empty-issue-description' into 'master'

This MR removes an odd line for empty description

Closes #23557 #23695

See merge request !7045
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 34c652e5
......@@ -8,6 +8,7 @@ Please view this file on the master branch, on stable branches it's out of date.
- Fix issue boards user link when in subdirectory. !7018
- Refactor and add new environment functionality to CI yaml reference. !7026
- Fix typo in project settings that prevents users from enabling container registry. !7037
- Remove extra line for empty issue description. !7045
## 8.13.0 (2016-10-22)
......
......@@ -372,3 +372,5 @@ table {
margin-right: -$gl-padding;
border-top: 1px solid $border-color;
}
.hide-bottom-border { border-bottom: none !important; }
......@@ -53,7 +53,7 @@
.issue-details.issuable-details
.detail-page-description.content-block
.detail-page-description.content-block{ class: ('hide-bottom-border' unless @issue.description.present? ) }
%h2.title
= markdown_field(@issue, :title)
- if @issue.description.present?
......
......@@ -31,7 +31,7 @@
= link_to namespace_project_milestone_path(@project.namespace, @project, @milestone), data: { confirm: 'Are you sure?' }, method: :delete, class: "btn btn-grouped btn-danger" do
Delete
.detail-page-description.milestone-detail
.detail-page-description.milestone-detail{ class: ('hide-bottom-border' unless @milestone.description.present? ) }
%h2.title
= markdown_field(@milestone, :title)
%div
......
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