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:
Piotr Sarnacki 2015-05-08 17:12:24 +02:00
parent 5c24778394
commit ce64132de1
3 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>