diff --git a/beat/web/reports/static/reports/app/directives/panelExperiments.js b/beat/web/reports/static/reports/app/directives/panelExperiments.js index f5520e512e7d2091bf0f70fe5e37f61cc3156432..cb42a17dfb3d3648721d75b33181b94f322ccbe9 100644 --- a/beat/web/reports/static/reports/app/directives/panelExperiments.js +++ b/beat/web/reports/static/reports/app/directives/panelExperiments.js @@ -109,9 +109,9 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', <thead> <tr> <th></th> + <th>Alias</th> <th>Experiment</th> <th>Databases/Protocols</th> - <th>Alias</th> </tr> </thead> <tbody> @@ -127,6 +127,8 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', </span> </div> </td> + <td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]'></input></td> + <td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td> <td><a href='{{ getExpUrl(expName) }}'>{{ expName }}</a></td> <td> <span ng-repeat='db in getExpDatabases(expName)'> @@ -134,8 +136,6 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', </span> </td> - <td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]'></input></td> - <td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td> </tr> </tbody> </table>