Skip to content
This repository has been archived by the owner on Dec 15, 2018. It is now read-only.

Commit

Permalink
When viewing test history, link directly to test
Browse files Browse the repository at this point in the history
Summary:
This is on the theory that, when you're looking at test history, you
probably want to see what happened with that test. It's still possible
to navigate straight to the entire build via the link in the "source"
column, if that's really what you want.

Reviewers: ar, vishal

Reviewed By: vishal

Subscribers: changesbot

Differential Revision: https://tails.corp.dropbox.com/D97702
  • Loading branch information
jboning committed Mar 24, 2015
1 parent a860c3c commit 1f22422
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions partials/project-test-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ <h3>Test History</h3>
</tr>
</thead>
<tr ng-repeat="result in results" class="result-{{result.result.id}}">
<td>
<td class="build-list"> <!-- nasty hack for indicator styling -->
<a class="indicator"
ui-sref="build_details({project_id: result.job.build.project.slug, build_id: result.job.build.id})">
#{{result.job.build.number}}.{{result.job.number}}
ui-sref="test_details({project_id: result.job.build.project.slug, build_id: result.job.build.id, job_id: result.job.id, test_id: result.id})">
{{result.result.id}}
</a>
</td>
<td ng-if="result.job.build.source.isCommit">
Expand Down

0 comments on commit 1f22422

Please sign in to comment.