diff options
author | George Tsiolis <tsiolis.g@gmail.com> | 2018-11-19 13:46:32 +0200 |
---|---|---|
committer | George Tsiolis <tsiolis.g@gmail.com> | 2018-11-21 23:41:38 +0200 |
commit | 8826962d2168e614c605f9fe5317731643bb384a (patch) | |
tree | e8c61f680d94dab20c662b420b269f40eb5b36e1 /app/assets/javascripts/cycle_analytics | |
parent | f252156784baf917d30fd66935778553baabb33d (diff) | |
download | gitlab-ce-8826962d2168e614c605f9fe5317731643bb384a.tar.gz |
Update `gitlab` npm namespace
Diffstat (limited to 'app/assets/javascripts/cycle_analytics')
-rw-r--r-- | app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue b/app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue index a67a225e20a..ff0f352b333 100644 --- a/app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue +++ b/app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue @@ -1,5 +1,5 @@ <script> -import { GlTooltipDirective } from '@gitlab-org/gitlab-ui'; +import { GlTooltipDirective } from '@gitlab/ui'; export default { directives: { @@ -16,7 +16,7 @@ export default { <template> <span v-if="count === 50" class="events-info float-right"> <i - v-gl-tooltip.top + v-gl-tooltip :title=" n__('Limited to showing %d event at most', 'Limited to showing %d events at most', 50) " |