From 32411d646e8a80adcc98dd567e1f5836757da19d Mon Sep 17 00:00:00 2001
From: Jaden Diefenbaugh <blakcap@users.noreply.github.com>
Date: Mon, 13 Mar 2017 12:13:33 +0100
Subject: [PATCH] link experiments to their page

---
 .../static/reports/app/directives/edit/panelExperiments.js   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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 b24f1d8d5..d1bd6ab99 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>
-- 
GitLab