Skip to content
Snippets Groups Projects
Commit e9197899 authored by Phil Hughes's avatar Phil Hughes
Browse files

Merge branch 'misaligned_approval_tr' into 'master'

Fix misaligned approval tr

Closes #38558

See merge request gitlab-org/gitlab!21368
parents d2fcec7d 4ed1372e
No related branches found
No related tags found
No related merge requests found
---
title: Fix misaligned approval tr
merge_request: 21368
author: Lee Tickett
type: fixed
Loading
Loading
@@ -137,7 +137,10 @@ export default {
</div>
</div>
</td>
<td v-if="!rule.fallback" class="d-none d-sm-table-cell js-approvers">
<td
v-if="rule.rule_type !== $options.ruleTypeAnyApprover"
class="d-none d-sm-table-cell js-approvers"
>
<div><user-avatar-list :items="rule.approvers" :img-size="24" empty-text="" /></div>
</td>
<td class="w-0 d-none d-sm-table-cell text-nowrap js-pending">
Loading
Loading
Loading
Loading
@@ -35,6 +35,7 @@ const testRuleFallback = () => ({
id: 'fallback',
name: '',
fallback: true,
rule_type: 'any_approver',
approvals_required: 3,
approved_by: [{ id: 1 }, { id: 2 }],
approvers: [],
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment