Commit 7a2fcfc0 authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Merge branch 'fix-tooltip-directive' into 'master'

Fix tooltip on vulnerability issue in dashboard

See merge request gitlab-org/gitlab!34560
parents 1170a072 2d959aa1
<script>
import { GlIcon, GlLink } from '@gitlab/ui';
import { GlIcon, GlLink, GlTooltipDirective } from '@gitlab/ui';
export default {
components: {
GlIcon,
GlLink,
},
directives: {
GlTooltip: GlTooltipDirective,
},
props: {
issue: {
type: Object,
......
<script>
import { s__, __ } from '~/locale';
import {
GlEmptyState,
GlFormCheckbox,
GlLink,
GlSkeletonLoading,
GlTable,
GlTooltipDirective,
} from '@gitlab/ui';
import { GlEmptyState, GlFormCheckbox, GlLink, GlSkeletonLoading, GlTable } from '@gitlab/ui';
import RemediatedBadge from './remediated_badge.vue';
import SeverityBadge from 'ee/vue_shared/security_reports/components/severity_badge.vue';
import SelectionSummary from 'ee/security_dashboard/components/selection_summary.vue';
......@@ -27,9 +20,6 @@ export default {
SelectionSummary,
SeverityBadge,
},
directives: {
GlTooltip: GlTooltipDirective,
},
props: {
dashboardDocumentation: {
type: String,
......
---
title: Fix tooltip on vulnerability issue in security dashboard
merge_request: 34560
author:
type: fixed
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