From f07ce5bc2b6238bd14b447d2e21b2208fc365621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Macias?= Date: Tue, 12 May 2015 18:06:04 +0200 Subject: [PATCH] Fix dashboard panel heading link --- .../ng-admin/Main/component/directive/maDashboardPanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js b/src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js index 5fb47e94..454a68c2 100644 --- a/src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js +++ b/src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js @@ -18,7 +18,7 @@ define(function (require) { }, link: function(scope) { scope.gotoList = function () { - $location.path(scope.entity().name() + '/list/'); + $location.path(scope.entity().name() + '/list'); }; }, template: dashboardPanelView