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 3a4615fdc3066e87a4a2f4bec5890590764bfc82..7bd0d7702bd8b5a17e65e317441a6e8002b5d8a8 100644
--- a/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js
+++ b/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js
@@ -44,7 +44,7 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
 			};
 			scope.getExpDatabases = (expName) => {
 				let dbs = scope.experiments[expName].declaration.datasets;
-				return Array.from(new Set(Object.values(dbs).map(db => db.database)));
+				return Array.from(new Set(Object.values(dbs).map(db => `${db.database}@${db.protocol}`)));
 			};
 			scope.getAnalyzerFromExpName = ExperimentsService.getAnalyzerFromExpName;
 			scope.getExpUrl = UrlService.getExperimentUrl;
@@ -94,7 +94,7 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
 				<tr>
 					<th></th>
 					<th>Experiment</th>
-					<th>Databases</th>
+					<th>Databases/Protocols</th>
 					<th>Alias</th>
 				</tr>
 			</thead>