Modified the two relevant templates (t_workstations.tt2 and t_login.tt2)
to again find a sorting solution for the workstation names.
<div class="row">
<div class="col-md-6">
<select class="form-control" ng-model="selectedWS">
- <option ng-repeat="ws in workstations | orderBy: 'ws'" value="{{ws}}"
+ <option ng-repeat="ws in workstations | orderBy: 'ws.name'" value="{{ws}}"
ng-selected="ws == selectedWS">
{{get_ws_label(ws)}}
</option>
for="login-workstation">[% l('Workstation') %]</label>
<div class="col-md-8">
<select class="form-control" ng-model="args.workstation"
- ng-options="ws for ws in workstations | orderBy: 'ws'">
+ ng-options="ws for ws in workstations | orderBy: 'ws.name'">
<option>[% l('Select Workstation') %]</option>
</select>
</div>