GUACAMOLE-823: Restructure home screen connection groups to match connections.

This commit is contained in:
Michael Jumper
2020-06-18 00:56:47 -07:00
parent cbe2c5dbf2
commit 917da570b0
4 changed files with 43 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
<a class="home-connection"
ng-href="#/client/{{ item.getClientIdentifier() }}"
ng-href="{{ item.getClientURL() }}"
ng-class="{active: item.getActiveConnections()}">
<!-- Connection icon -->

View File

@@ -1,4 +1,10 @@
<span class="home-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="home-connection-group"
ng-href="{{ item.getClientURL() }}">
<!-- Connection group icon -->
<div ng-show="item.balancing" class="icon type balancer"></div>
<!-- Connection group name -->
<span class="name">{{item.name}}</span>
</a>