GUACAMOLE-724: Clear out sharing profiles from previous client if focus is changing to a client lacking a UUID.

This commit is contained in:
Michael Jumper
2021-06-27 22:35:51 -07:00
parent 5e2e28365c
commit 68e856987e

View File

@@ -462,8 +462,10 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
$scope.$watch('focusedClient.tunnel.uuid', function retrieveSharingProfiles(uuid) {
// Only pull sharing profiles if tunnel UUID is actually available
if (!uuid)
if (!uuid) {
$scope.sharingProfiles = {};
return;
}
// Pull sharing profiles for the current connection
tunnelService.getSharingProfiles(uuid)