Remove gitlab-ui's progress bar from global
This commit is contained in:
parent
f4023a69cb
commit
fe61d36cfa
3 changed files with 10 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { GlProgressBar, GlLoadingIcon, GlTooltipDirective } from '@gitlab-org/gitlab-ui';
|
import { GlLoadingIcon, GlTooltipDirective } from '@gitlab-org/gitlab-ui';
|
||||||
|
|
||||||
Vue.component('gl-progress-bar', GlProgressBar);
|
|
||||||
Vue.component('gl-loading-icon', GlLoadingIcon);
|
Vue.component('gl-loading-icon', GlLoadingIcon);
|
||||||
|
|
||||||
Vue.directive('gl-tooltip', GlTooltipDirective);
|
Vue.directive('gl-tooltip', GlTooltipDirective);
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
import { parseSeconds, stringifyTime } from '~/lib/utils/datetime_utility';
|
import { parseSeconds, stringifyTime } from '~/lib/utils/datetime_utility';
|
||||||
import tooltip from '../../../vue_shared/directives/tooltip';
|
import tooltip from '../../../vue_shared/directives/tooltip';
|
||||||
|
import { GlProgressBar } from '@gitlab-org/gitlab-ui';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TimeTrackingComparisonPane',
|
name: 'TimeTrackingComparisonPane',
|
||||||
|
components: {
|
||||||
|
GlProgressBar,
|
||||||
|
},
|
||||||
directives: {
|
directives: {
|
||||||
tooltip,
|
tooltip,
|
||||||
},
|
},
|
||||||
|
|
5
changelogs/unreleased/gl-ui-progress-bar.yml
Normal file
5
changelogs/unreleased/gl-ui-progress-bar.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Remove gitlab-ui's progress bar from global
|
||||||
|
merge_request:
|
||||||
|
author:
|
||||||
|
type: performance
|
Loading…
Reference in a new issue