Pass repo to job components from the build template
It seems that when repo object on job is not instantiated it can error out when trying to use slug along with slug. Before I dig deeper into this, the easy fix is to pass repo from the top, because on repo view it's loaded already.
This commit is contained in:
parent
5c24778394
commit
ce64132de1
|
@ -78,8 +78,8 @@
|
|||
|
||||
{{#if build.isMatrix}}
|
||||
{{#if jobsLoaded}}
|
||||
{{jobs-list jobs=build.requiredJobs required="true"}}
|
||||
{{jobs-list jobs=build.allowedFailureJobs}}
|
||||
{{jobs-list jobs=build.requiredJobs repo=repo required="true"}}
|
||||
{{jobs-list jobs=build.allowedFailureJobs repo=repo}}
|
||||
{{else}}
|
||||
<div class="spinner-container">
|
||||
<span class="sync-spinner sync-spinner--grey"><i></i><i></i><i></i></span>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{#link-to "job" job.repo job}}
|
||||
{{#link-to "job" repo job}}
|
||||
<div class="tile-status tile-status--job">
|
||||
<span {{bind-attr class=":icon :icon--job job.state"}}></span>
|
||||
</div>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<ul class="jobs-list">
|
||||
{{#each job in jobs}}
|
||||
{{jobs-item job=job}}
|
||||
{{jobs-item job=job repo=repo}}
|
||||
{{/each}}
|
||||
</ul>
|
||||
</section>
|
||||
|
|
Loading…
Reference in New Issue
Block a user