Repository: aurora Updated Branches: refs/heads/master 5a7bd347d -> 07838c38e
Fix link to update page for the update list. This was missed when I added the instance page. The redirect in the instance controller catches this, but it makes going back impossible (since you land back on the instance page and immediately get redirected again). Reviewed at https://reviews.apache.org/r/38018/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/07838c38 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/07838c38 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/07838c38 Branch: refs/heads/master Commit: 07838c38e90595ad5d3feef982e0accf0f881cad Parents: 5a7bd34 Author: Joshua Cohen <[email protected]> Authored: Tue Sep 1 20:04:35 2015 -0500 Committer: Joshua Cohen <[email protected]> Committed: Tue Sep 1 20:04:35 2015 -0500 ---------------------------------------------------------------------- src/main/resources/scheduler/assets/latestUpdates.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/07838c38/src/main/resources/scheduler/assets/latestUpdates.html ---------------------------------------------------------------------- diff --git a/src/main/resources/scheduler/assets/latestUpdates.html b/src/main/resources/scheduler/assets/latestUpdates.html index 54bcded..f396315 100644 --- a/src/main/resources/scheduler/assets/latestUpdates.html +++ b/src/main/resources/scheduler/assets/latestUpdates.html @@ -26,7 +26,7 @@ </tr> <tr ng-repeat="update in updates"> <td> - <a href="/scheduler/{{update.key.job.role}}/{{update.key.job.environment}}/{{update.key.job.name}}/{{update.key.id}}"> + <a href="/scheduler/{{update.key.job.role}}/{{update.key.job.environment}}/{{update.key.job.name}}/update/{{update.key.id}}"> {{update.key.job.role}}/{{update.key.job.environment}}/{{update.key.job.name}} </a> </td>
