Repository: ambari Updated Branches: refs/heads/trunk d6d5df5c4 -> 30eadbf07
AMBARI-18488. Delete group button always shows tooltip "Cannot Delete Group" (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/30eadbf0 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/30eadbf0 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/30eadbf0 Branch: refs/heads/trunk Commit: 30eadbf07fe601931e9029c4a7007218b62194ad Parents: d6d5df5 Author: Alex Antonenko <[email protected]> Authored: Mon Oct 3 15:22:34 2016 +0300 Committer: Alex Antonenko <[email protected]> Committed: Mon Oct 3 15:22:57 2016 +0300 ---------------------------------------------------------------------- .../src/main/resources/ui/admin-web/app/views/groups/edit.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/30eadbf0/ambari-admin/src/main/resources/ui/admin-web/app/views/groups/edit.html ---------------------------------------------------------------------- diff --git a/ambari-admin/src/main/resources/ui/admin-web/app/views/groups/edit.html b/ambari-admin/src/main/resources/ui/admin-web/app/views/groups/edit.html index 8271432..78a6884 100644 --- a/ambari-admin/src/main/resources/ui/admin-web/app/views/groups/edit.html +++ b/ambari-admin/src/main/resources/ui/admin-web/app/views/groups/edit.html @@ -24,7 +24,7 @@ <div class="pull-right top-margin-4"> <div ng-switch="group.ldap_group"> <button ng-switch-when="true" class="btn disabled deletegroup-btn deleteuser-btn" tooltip="{{'common.cannotDelete' | translate: '{term: constants.group}'}}">{{'common.delete' | translate: '{term: constants.group}'}}</button> - <button ng-switch-when="false" class="btn btn-danger deletegroup-btn" ng-click="deleteGroup(group)" tooltip="{{'common.cannotDelete' | translate: '{term: constants.group}'}}">{{'common.delete' | translate: '{term: constants.group}'}}</button> + <button ng-switch-when="false" class="btn btn-danger deletegroup-btn" ng-click="deleteGroup(group)">{{'common.delete' | translate: '{term: constants.group}'}}</button> </div> </div> @@ -92,4 +92,4 @@ <div class="alert alert-info hide-soft" ng-class="{'visible' : !privileges}">{{'common.alerts.noPrivilegesDescription' | translate: '{term: constants.group.toLowerCase()}'}}</div> </div> </div> -</form> \ No newline at end of file +</form>
