Commit a10c3342 authored by Olena Horal-Koretska's avatar Olena Horal-Koretska

Merge branch...

Merge branch '229015-replace-vue_shared-tooltip-with-gitlab-ui-s-tooltip-in-app-assets-javascripts-ide-components' into 'master'

Resolve "Replace vue_shared with GitLab UI tooltip in jobs/detail.vue"

Closes #229015

See merge request gitlab-org/gitlab!43859
parents f751d0f8 572bf756
...@@ -2,9 +2,8 @@ ...@@ -2,9 +2,8 @@
/* eslint-disable vue/no-v-html */ /* eslint-disable vue/no-v-html */
import { mapActions, mapState } from 'vuex'; import { mapActions, mapState } from 'vuex';
import { throttle } from 'lodash'; import { throttle } from 'lodash';
import { GlIcon } from '@gitlab/ui'; import { GlIcon, GlTooltipDirective } from '@gitlab/ui';
import { __ } from '../../../locale'; import { __ } from '../../../locale';
import tooltip from '../../../vue_shared/directives/tooltip';
import ScrollButton from './detail/scroll_button.vue'; import ScrollButton from './detail/scroll_button.vue';
import JobDescription from './detail/description.vue'; import JobDescription from './detail/description.vue';
...@@ -15,7 +14,7 @@ const scrollPositions = { ...@@ -15,7 +14,7 @@ const scrollPositions = {
export default { export default {
directives: { directives: {
tooltip, GlTooltip: GlTooltipDirective,
}, },
components: { components: {
GlIcon, GlIcon,
...@@ -84,7 +83,7 @@ export default { ...@@ -84,7 +83,7 @@ export default {
<job-description :job="detailJob" /> <job-description :job="detailJob" />
<div class="controllers ml-auto"> <div class="controllers ml-auto">
<a <a
v-tooltip v-gl-tooltip
:title="__('Show complete raw log')" :title="__('Show complete raw log')"
:href="detailJob.rawPath" :href="detailJob.rawPath"
data-placement="top" data-placement="top"
......
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