Commit 4e36c7e5 authored by Paul Slaughter's avatar Paul Slaughter

Fix approvers list item width issue

**What happened?**
Wrapping with `settings-flex-row` caused issues when
it was updated to actually `display: flex` in b714c3ec.
parent fe9b9f55
...@@ -37,8 +37,7 @@ export default { ...@@ -37,8 +37,7 @@ export default {
<template> <template>
<transition name="fade"> <transition name="fade">
<li class="settings-flex-row"> <li class="d-flex align-items-center px-3">
<div class="px-3 d-flex align-items-center">
<hidden-groups-item v-if="isHiddenGroups" /> <hidden-groups-item v-if="isHiddenGroups" />
<template v-else> <template v-else>
<avatar :project="approver" :size="24" /><span>{{ displayName }}</span> <avatar :project="approver" :size="24" /><span>{{ displayName }}</span>
...@@ -46,7 +45,6 @@ export default { ...@@ -46,7 +45,6 @@ export default {
<gl-button variant="none" class="ml-auto" @click="$emit('remove', approver)"> <gl-button variant="none" class="ml-auto" @click="$emit('remove', approver)">
<icon name="remove" :aria-label="__('Remove')" /> <icon name="remove" :aria-label="__('Remove')" />
</gl-button> </gl-button>
</div>
</li> </li>
</transition> </transition>
</template> </template>
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