Commit 4e693d66 authored by Dheeraj Joshi's avatar Dheeraj Joshi Committed by Mike Greiling

Resolve "Bug: tooltip in MR approvers settings wrong color"

parent 30c68de4
---
title: Fixes MR approvers tooltip wrong color
merge_request: 20287
author: Dheeraj Joshi
type: fixed
<script>
import { GlLink, GlPopover } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
import { GlLink, GlPopover, GlIcon } from '@gitlab/ui';
export default {
name: 'ApprovalCheckPopover',
components: {
GlLink,
GlPopover,
Icon,
GlIcon,
},
props: {
documentationLink: {
......@@ -35,10 +34,10 @@ export default {
<template>
<span class="vertical-align-middle text-muted js-help">
<icon
<gl-icon
ref="reportInfo"
name="question"
css-classes="text-info"
class="text-info"
:aria-label="__('help')"
:size="14"
/>
......@@ -51,7 +50,7 @@ export default {
<div class="mb-2">{{ text }}</div>
<gl-link v-if="documentationLink" target="_blank" :href="documentationLink">
<span class="vertical-align-middle">{{ documentationText }}</span>
<icon name="external-link" class="vertical-align-middle" />
<gl-icon name="external-link" class="vertical-align-middle" />
</gl-link>
</gl-popover>
</span>
......
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