Skip to content
Snippets Groups Projects
Commit 5aebc3de authored by Jaden Diefenbaugh's avatar Jaden Diefenbaugh
Browse files

show protocol as well as db for exps lists

parent ff12b7f9
No related branches found
No related tags found
1 merge request!223Reports overhaul
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment