Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-11-05 19:48:55 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-11-05 19:48:55 +0300
commit701f0f5e55bd40a0e73eb2ace7077b3ee4f0092a (patch)
tree604a15f035bd92f343ed4e00bbbebb50f1d8199d /app/assets/javascripts/vue_shared/components/gl_countdown.vue
parent3429d35763073d3d98aef04ff895752a3eeff90a (diff)
Remove gitlab-ui's tooltip from global
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/gl_countdown.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/gl_countdown.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/vue_shared/components/gl_countdown.vue b/app/assets/javascripts/vue_shared/components/gl_countdown.vue
index 9327a2a4a6c..a35986b2d03 100644
--- a/app/assets/javascripts/vue_shared/components/gl_countdown.vue
+++ b/app/assets/javascripts/vue_shared/components/gl_countdown.vue
@@ -1,10 +1,14 @@
<script>
import { calculateRemainingMilliseconds, formatTime } from '~/lib/utils/datetime_utility';
+import { GlTooltipDirective } from '@gitlab-org/gitlab-ui';
/**
* Counts down to a given end date.
*/
export default {
+ directives: {
+ GlTooltip: GlTooltipDirective,
+ },
props: {
endDateString: {
type: String,