GUACAMOLE-526: Use toArray where necessary for orderBy.

This commit is contained in:
Michael Jumper
2018-04-30 13:37:09 -07:00
parent f7ca11df50
commit ae6994a912
2 changed files with 4 additions and 4 deletions

View File

@@ -9,6 +9,6 @@
<select class="time-zone"
ng-disabled="!region"
ng-model="model"
ng-options="name for (name, value) in timeZones[region] | orderBy: name"></select>
ng-options="timeZone.value as timeZone.key for timeZone in timeZones[region] | toArray | orderBy: key"></select>
</div>