Commit 78bbf518 authored by Nick Gaskill's avatar Nick Gaskill Committed by Miguel Rincon

Replacing tooltip in clusters.vue

parent 480aed65
...@@ -8,10 +8,10 @@ import { ...@@ -8,10 +8,10 @@ import {
GlDeprecatedSkeletonLoading as GlSkeletonLoading, GlDeprecatedSkeletonLoading as GlSkeletonLoading,
GlSprintf, GlSprintf,
GlTable, GlTable,
GlTooltipDirective,
} from '@gitlab/ui'; } from '@gitlab/ui';
import AncestorNotice from './ancestor_notice.vue'; import AncestorNotice from './ancestor_notice.vue';
import NodeErrorHelpText from './node_error_help_text.vue'; import NodeErrorHelpText from './node_error_help_text.vue';
import tooltip from '~/vue_shared/directives/tooltip';
import { CLUSTER_TYPES, STATUSES } from '../constants'; import { CLUSTER_TYPES, STATUSES } from '../constants';
import { __, sprintf } from '~/locale'; import { __, sprintf } from '~/locale';
...@@ -30,7 +30,7 @@ export default { ...@@ -30,7 +30,7 @@ export default {
NodeErrorHelpText, NodeErrorHelpText,
}, },
directives: { directives: {
tooltip, GlTooltip: GlTooltipDirective,
}, },
computed: { computed: {
...mapState([ ...mapState([
...@@ -227,7 +227,7 @@ export default { ...@@ -227,7 +227,7 @@ export default {
<gl-loading-icon <gl-loading-icon
v-if="item.status === 'deleting' || item.status === 'creating'" v-if="item.status === 'deleting' || item.status === 'creating'"
v-tooltip v-gl-tooltip
:title="statusTitle(item.status)" :title="statusTitle(item.status)"
size="sm" size="sm"
/> />
......
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