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

This commit is contained in:
Michael Jumper
2020-06-25 13:16:35 -07:00
parent 57378fd38f
commit b5eca6831d
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> <div class="icon type" ng-class="item.protocol"></div>
<span class="name">{{item.name}}</span> <span class="name">{{item.name}}</span>
</a> </a>

View File

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