diff --git a/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js b/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js index b24f1d8d5d6fc068f869a657b0a05b08053e3279..d1bd6ab9992fb35f54506451071a3b16577a0e24 100644 --- a/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js +++ b/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js @@ -25,7 +25,7 @@ * Desc: * displays the experiments panel of the group */ -angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', 'ExperimentsService', function(GroupsService, ExperimentsService){ +angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', 'ExperimentsService', 'UrlService', function(GroupsService, ExperimentsService, UrlService){ return { scope: { group: '=' @@ -42,6 +42,7 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', ; }; scope.getAnalyzerFromExpName = ExperimentsService.getAnalyzerFromExpName; + scope.getExpUrl = UrlService.getExperimentUrl; }, template: ` <div id="{{group.name}}-explist-heading" class="panel-heading" role="tab"> @@ -99,7 +100,7 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', </span> </div> </td> - <td>{{ expName }}</td> + <td><a href='{{ getExpUrl(expName) }}'>{{ expName }}</a></td> <td><input ng-disabled='!isEditable' ng-model='group.aliases[expName]'></input></td> </tr> </tbody>