summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-06-08 00:14:55 +0000
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-06-08 00:14:55 +0000
commite0b36899437f958f12f3c4e98df46638fd96c30a (patch)
tree2f855902b89a4a27ee8115080e7e306aeebf51b4
parentecfafc3c04489b338f4b2bf64096725188471db2 (diff)
parentcc35871625091af8496aa70c267d413640610645 (diff)
downloadgitlab-ce-e0b36899437f958f12f3c4e98df46638fd96c30a.tar.gz
Merge branch 'fix-tasks-completed' into 'master'
Fix tasks completed header Closes #47506 See merge request gitlab-org/gitlab-ce!19562
-rw-r--r--app/helpers/issuables_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb
index 8572c2b7276..d42284868c7 100644
--- a/app/helpers/issuables_helper.rb
+++ b/app/helpers/issuables_helper.rb
@@ -165,7 +165,7 @@ module IssuablesHelper
output << content_tag(:span, (issuable_first_contribution_icon if issuable.first_contribution?), class: 'has-tooltip', title: _('1st contribution!'))
output << content_tag(:span, (issuable.task_status if issuable.tasks?), id: "task_status", class: "d-none d-sm-none d-md-inline-block")
- output << content_tag(:span, (issuable.task_status_short if issuable.tasks?), id: "task_status_short", class: "d-md-none d-lg-none d-xl-inline-block")
+ output << content_tag(:span, (issuable.task_status_short if issuable.tasks?), id: "task_status_short", class: "d-md-none")
output.html_safe
end