Commit 1a070027 authored by Mike Greiling's avatar Mike Greiling

Fix conflicts in app/assets/javascripts/pipelines/components/graph/graph_component.vue

parent af46112b
...@@ -95,14 +95,11 @@ export default { ...@@ -95,14 +95,11 @@ export default {
<stage-column-component <stage-column-component
v-for="(stage, index) in graph" v-for="(stage, index) in graph"
:key="stage.name" :key="stage.name"
<<<<<<< HEAD
:class="{ :class="{
'has-upstream': index === 0 && hasTriggeredBy, 'has-upstream': index === 0 && hasTriggeredBy,
'has-downstream': index === graph.length - 1 && hasTriggered, 'has-downstream': index === graph.length - 1 && hasTriggered,
'has-only-one-job': stage.groups.length === 1 'has-only-one-job': stage.groups.length === 1
}" }"
=======
>>>>>>> upstream/master
:title="capitalizeStageName(stage.name)" :title="capitalizeStageName(stage.name)"
:jobs="stage.groups" :jobs="stage.groups"
:stage-connector-class="stageConnectorClass(index, stage)" :stage-connector-class="stageConnectorClass(index, stage)"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment