GUACAMOLE-823: Update item structure of Guacamole menu connection browser to match home screen.

This commit is contained in:
Virtually Nick
2020-06-25 16:22:30 -04:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
<a class="connection" ng-href="#/client/{{ item.getClientIdentifier() }}">
<a class="connection" ng-href="{{ item.getClientURL() }}">
<div class="icon type" ng-class="item.protocol"></div>
<span class="name">{{item.name}}</span>
</a>

View File

@@ -1,4 +1,4 @@
<span class="connection-group name">
<a ng-show="item.balancing" ng-href="#/client/{{ item.getClientIdentifier() }}">{{item.name}}</a>
<span ng-show="!item.balancing">{{item.name}}</span>
</span>
<a class="connection-group" ng-href="{{ item.getClientURL() }}">
<div ng-show="item.balancing" class="icon type balancer"></div>
<span class="name">{{item.name}}</span>
</a>