Merge "Fix absolute href"

This commit is contained in:
Jenkins 2016-12-07 00:05:00 +00:00 committed by Gerrit Code Review
commit 630af402db
3 changed files with 4 additions and 4 deletions

View File

@ -356,7 +356,7 @@
<div as-sortable-item-handle>
<span ng-if="!lane.worklist.editing">
<a ng-class="{'kanban-lane-title': !!lane.worklist.title}"
href="/#!/worklist/{{lane.worklist.id}}">
href="#!/worklist/{{lane.worklist.id}}">
{{ lane.worklist.title }}
</a>
<a href ng-click="editWorklist(lane.worklist)">
@ -389,7 +389,7 @@
ng-if="!lane.worklist.archived"
ng-class="{'kanban-lane-automatic': lane.worklist.automatic}">
<a class="kanban-lane-title"
href="/#!/worklist/{{lane.worklist.id}}">
href="#!/worklist/{{lane.worklist.id}}">
{{ lane.worklist.title }}
</a>
<div ng-include src="'app/boards/template/board_contents/kanban_lane_contents.html'"

View File

@ -286,7 +286,7 @@
<tbody>
<tr ng-repeat="worklist in worklists.slice(0, 5)">
<td>
<a href="/#!/worklist/{{worklist.id}}">{{worklist.title}}</a>
<a href="#!/worklist/{{worklist.id}}">{{worklist.title}}</a>
<span class="text-muted pull-right" ng-show="worklist.automatic">
(automatic)
</span>

View File

@ -9,7 +9,7 @@
<tbody>
<tr ng-repeat="worklist in worklists">
<td>
<a href="/#!/worklist/{{worklist.id}}">{{worklist.title}}</a>
<a href="#!/worklist/{{worklist.id}}">{{worklist.title}}</a>
<span class="text-muted pull-right" ng-show="worklist.automatic">
(automatic)
</span>