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:
authorsarahghp <sarah.groff.palermo@gmail.com>2019-04-26 03:42:42 +0300
committerpburdette <pburdette@gitlab.com>2019-09-04 18:53:31 +0300
commit5fee357dad9974c8d0bbc60bed1dae195f9a3263 (patch)
treeee7e5ccd47e46fbe64cd323584acaa917cf82797
parent97092fbb48c0511f03624a0221c5f7109a796e3d (diff)
Adds backport change
-rw-r--r--app/assets/javascripts/pipelines/components/graph/graph_component.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/graph_component.vue b/app/assets/javascripts/pipelines/components/graph/graph_component.vue
index ba0dea626dc..3dc85a5d203 100644
--- a/app/assets/javascripts/pipelines/components/graph/graph_component.vue
+++ b/app/assets/javascripts/pipelines/components/graph/graph_component.vue
@@ -20,6 +20,9 @@ export default {
<stage-column-component
v-for="(stage, index) in graph"
:key="stage.name"
+ :class="{
+ 'append-right-44': !(index === graph.length - 1),
+ }"
:title="capitalizeStageName(stage.name)"
:groups="stage.groups"
:stage-connector-class="stageConnectorClass(index, stage)"