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