Repository: ambari Updated Branches: refs/heads/trunk 7a1871865 -> 661ee4cd7
AMBARI-17865 incorrect text for disabled "Change Password" button (zhewang) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/661ee4cd Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/661ee4cd Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/661ee4cd Branch: refs/heads/trunk Commit: 661ee4cd72c083814a727a8850f4ac151e07067b Parents: 7a18718 Author: Zhe (Joe) Wang <[email protected]> Authored: Fri Jul 22 18:07:44 2016 -0700 Committer: Zhe (Joe) Wang <[email protected]> Committed: Fri Jul 22 18:08:27 2016 -0700 ---------------------------------------------------------------------- .../src/main/resources/ui/admin-web/app/views/users/show.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/661ee4cd/ambari-admin/src/main/resources/ui/admin-web/app/views/users/show.html ---------------------------------------------------------------------- diff --git a/ambari-admin/src/main/resources/ui/admin-web/app/views/users/show.html b/ambari-admin/src/main/resources/ui/admin-web/app/views/users/show.html index a1b4c95..e576b28 100644 --- a/ambari-admin/src/main/resources/ui/admin-web/app/views/users/show.html +++ b/ambari-admin/src/main/resources/ui/admin-web/app/views/users/show.html @@ -53,7 +53,7 @@ <label for="password" class="col-sm-2 control-label">{{'users.password' | translate}}</label> <div class="col-sm-10"> <div ng-switch="user.ldap_user"> - <button class="btn deleteuser-btn disabled btn-default" ng-switch-when="true" tooltip="{{'users.alerts.cannotChange' | translate: '{term: constants.password}'}}">{{'users.changePassword'}}</button> + <button class="btn deleteuser-btn disabled btn-default" ng-switch-when="true" tooltip="{{'users.alerts.cannotChange' | translate: '{term: constants.password}'}}">{{'users.changePassword' | translate}}</button> <a href ng-click="openChangePwdDialog()" ng-switch-when="false" class="btn btn-default changepassword">{{'users.changePassword' | translate}}</a> </div>
