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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-19 15:08:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-19 15:08:54 +0300
commit2ef0b7f13d72eee215e3491a8db4623cbcdd845c (patch)
tree17863be2de76defcc7ba52691181275b2ce68881 /app/assets/javascripts/pipelines
parent541758119cb1a4e029a2d0fb0551f52f6cf9a511 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r--app/assets/javascripts/pipelines/components/graph/stage_column_component.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
index b0f375c9aeb..6ab4eb58977 100644
--- a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
+++ b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
@@ -141,7 +141,9 @@ export default {
class="gl-display-flex gl-justify-content-space-between gl-relative"
:class="$options.titleClasses"
>
- <div>{{ formattedTitle }}</div>
+ <span :title="formattedTitle" class="gl-text-truncate gl-pr-3 gl-w-85p">
+ {{ formattedTitle }}
+ </span>
<action-component
v-if="hasAction && canUpdatePipeline"
:action-icon="action.icon"