mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-220: Hide identifier set editor if there are no identifiers to edit.
This commit is contained in:
@@ -260,6 +260,20 @@ angular.module('manage').directive('identifierSetEditor', ['$injector',
|
|||||||
$scope.expanded = false;
|
$scope.expanded = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns whether there are absolutely no identifiers that can be
|
||||||
|
* managed using this editor. If true, the editor is effectively
|
||||||
|
* useless, as there is nothing whatsoever to display.
|
||||||
|
*
|
||||||
|
* @returns {Boolean}
|
||||||
|
* true if there are no identifiers that can be managed using this
|
||||||
|
* editor, false otherwise.
|
||||||
|
*/
|
||||||
|
$scope.isEmpty = function isEmpty() {
|
||||||
|
return _.isEmpty($scope.identifiers)
|
||||||
|
&& _.isEmpty($scope.identifiersAvailable);
|
||||||
|
};
|
||||||
|
|
||||||
}];
|
}];
|
||||||
|
|
||||||
return directive;
|
return directive;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<div class="related-objects">
|
<div class="related-objects" ng-hide="isEmpty()">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h2>{{ header | translate }}</h2>
|
<h2>{{ header | translate }}</h2>
|
||||||
<div class="filter">
|
<div class="filter">
|
||||||
|
Reference in New Issue
Block a user