GUACAMOLE-723: Display warning icon when background connection disconnects due to an error.

This commit is contained in:
Michael Jumper
2019-04-02 11:14:23 -07:00
parent 378cae57a7
commit d7dfd08add
4 changed files with 55 additions and 1 deletions

View File

@@ -6,7 +6,8 @@
<!-- List of connection thumbnails -->
<ul class="client-panel-connection-list">
<li ng-repeat="client in clients | toArray | orderBy: [ '-value.lastUsed', 'value.title' ]" class="client-panel-connection">
<li ng-repeat="client in clients | toArray | orderBy: [ '-value.lastUsed', 'value.title' ]"
ng-class="{ 'error' : hasError(client.value) }" class="client-panel-connection">
<a href="#/client/{{client.value.id}}">
<div class="thumbnail">
<guac-thumbnail client="client.value"></guac-thumbnail>