feat(alerting): update path

This commit is contained in:
bergquist
2016-05-09 15:17:26 +02:00
parent 1be513fabd
commit 9da2e6e907
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ function setupAngularRoutes($routeProvider, $locationProvider) {
controllerAs: 'ctrl',
resolve: loadAlertsBundle,
})
.when('/alerts/events/:alertId', {
.when('/alerts/:alertId/states', {
templateUrl: 'public/app/features/alerts/partials/alert_log.html',
controller: 'AlertLogCtrl',
controllerAs: 'ctrl',
@@ -17,12 +17,12 @@
</thead>
<tr ng-repeat="alert in ctrl.alerts">
<td>
<a href="/alerts/events/{{alert.id}}">
<a href="/alerts/{{alert.id}}/states">
{{alert.title}}
</a>
</td>
<td class="text-center">
<a href="/alerts/events/{{alert.id}}">
<a href="/alerts/{{alert.id}}/states">
<i class="icon-gf {{alert.iconCss}}"></i>
</a>
</td>