Commit 9830daa1 authored by Bryce Johnson's avatar Bryce Johnson

Fix up left connector on first stage, triangle vertical alignment.

parent 7ce5fd34
......@@ -22,6 +22,10 @@ export default {
required: false,
default: '',
},
hasTriggeredBy: {
type: Boolean,
required: true,
},
},
components: {
jobComponent,
......@@ -51,7 +55,7 @@ export default {
:key="job.id"
class="build"
:class="{
'left-connector': index === 0 && !isFirstColumn
'left-connector': index === 0 && (!isFirstColumn || hasTriggeredBy)
}"
:id="jobId(job)">
......
......@@ -1071,7 +1071,7 @@
.cross-project-triangle {
position: absolute;
top: 49px;
top: 48px;
width: 0;
height: 0;
border-bottom: 7px solid transparent;
......
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