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-12-03 18:40:34 +0300
committerClement Ho <clemmakesapps@gmail.com>2018-12-03 18:40:34 +0300
commit04a6ed6970505be661b7481225f8f3592940bdb0 (patch)
tree4ffbb5b8489ad6b3d4d73a78b3b19bd702190d3e /app/assets/javascripts/pipelines
parent1ddde35ec6dcf01556d5127e49bad86a2fab009e (diff)
parent699e1180f6808fa73b5efbe7452efeaae97d408e (diff)
Merge branch '54514-tooltips' into 'master'
Fixes tooltip overflowing in mini pipeline Closes #54514 See merge request gitlab-org/gitlab-ce!23486
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r--app/assets/javascripts/pipelines/components/graph/job_item.vue6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/job_item.vue b/app/assets/javascripts/pipelines/components/graph/job_item.vue
index 782494f72e4..cf9db89e32b 100644
--- a/app/assets/javascripts/pipelines/components/graph/job_item.vue
+++ b/app/assets/javascripts/pipelines/components/graph/job_item.vue
@@ -84,10 +84,6 @@ export default {
return textBuilder.join(' ');
},
-
- tooltipBoundary() {
- return this.dropdownLength < 5 ? 'viewport' : null;
- },
/**
* Verifies if the provided job has an action path
*
@@ -108,7 +104,7 @@ export default {
<div class="ci-job-component">
<gl-link
v-if="status.has_details"
- v-gl-tooltip="{ boundary: tooltipBoundary }"
+ v-gl-tooltip
:href="status.details_path"
:title="tooltipText"
:class="cssClassJobName"