Commit 1dbcc05a authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch...

Merge branch '227865-positioning-of-mr-and-issue-counter-on-epic-trees-and-board-headers' into 'master'

Fix positioning of mr and issue counter on epic trees and board headers

Closes #227865

See merge request gitlab-org/gitlab!36621
parents dd34ca6b dc85a066
...@@ -281,7 +281,7 @@ export default { ...@@ -281,7 +281,7 @@ export default {
</board-delete> </board-delete>
<div <div
v-if="showBoardListAndBoardInfo" v-if="showBoardListAndBoardInfo"
class="issue-count-badge gl-pr-0 no-drag text-secondary" class="issue-count-badge gl-display-inline-flex gl-pr-0 no-drag text-secondary"
:class="{ 'gl-display-none': !list.isExpanded && isSwimlanesHeader }" :class="{ 'gl-display-none': !list.isExpanded && isSwimlanesHeader }"
> >
<span class="gl-display-inline-flex"> <span class="gl-display-inline-flex">
......
---
title: Fix positioning of mr/issue count
merge_request: 36621
author:
type: fixed
...@@ -90,7 +90,10 @@ export default { ...@@ -90,7 +90,10 @@ export default {
</span> </span>
</p> </p>
</gl-tooltip> </gl-tooltip>
<div ref="countBadge" class="issue-count-badge text-secondary p-0 pr-3"> <div
ref="countBadge"
class="issue-count-badge gl-display-inline-flex text-secondary p-0 pr-3"
>
<span v-if="allowSubEpics" class="d-inline-flex align-items-center"> <span v-if="allowSubEpics" class="d-inline-flex align-items-center">
<gl-icon name="epic" class="mr-1" /> <gl-icon name="epic" class="mr-1" />
{{ totalEpicsCount }} {{ totalEpicsCount }}
......
...@@ -219,7 +219,7 @@ export default { ...@@ -219,7 +219,7 @@ export default {
<div <div
v-if="isEpic" v-if="isEpic"
ref="countBadge" ref="countBadge"
class="issue-count-badge text-secondary py-0 p-lg-0" class="issue-count-badge gl-display-inline-flex text-secondary py-0 p-lg-0"
> >
<span v-if="allowSubEpics" class="d-inline-flex align-items-center mr-2"> <span v-if="allowSubEpics" class="d-inline-flex align-items-center mr-2">
<gl-icon name="epic" class="mr-1" /> <gl-icon name="epic" class="mr-1" />
......
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