summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsarahghp <sarah.groff.palermo@gmail.com>2019-04-25 20:42:42 -0400
committerpburdette <pburdette@gitlab.com>2019-09-04 09:58:51 -0400
commit9ddbdcabcc755185c55af29bce478f2672ad0081 (patch)
treeee7e5ccd47e46fbe64cd323584acaa917cf82797
parent97092fbb48c0511f03624a0221c5f7109a796e3d (diff)
downloadgitlab-ce-9ddbdcabcc755185c55af29bce478f2672ad0081.tar.gz
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)"