瀏覽代碼

AMBARI-2052. Fix delete user popup. (yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1478190 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 年之前
父節點
當前提交
1c5bed578f
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 2 0
      CHANGES.txt
  2. 1 2
      ambari-web/app/controllers/main/admin/user.js

+ 2 - 0
CHANGES.txt

@@ -823,6 +823,8 @@ Trunk (unreleased changes):
 
 
  BUG FIXES
  BUG FIXES
 
 
+ AMBARI-2052. Fix delete user popup. (yusaku)
+
  AMBARI-2065. Hadoop group customization does not take affect. (smohanty)
  AMBARI-2065. Hadoop group customization does not take affect. (smohanty)
 
 
  AMBARI-2062. Service versions shown during install dont match installed
  AMBARI-2062. Service versions shown during install dont match installed

+ 1 - 2
ambari-web/app/controllers/main/admin/user.js

@@ -39,11 +39,10 @@ App.MainAdminUserController = Em.Controller.extend({
 
 
       return;
       return;
     }
     }
-    ;
 
 
     App.ModalPopup.show({
     App.ModalPopup.show({
       header:Em.I18n.t('admin.users.delete.header').format(event.context.get('userName')),
       header:Em.I18n.t('admin.users.delete.header').format(event.context.get('userName')),
-      body:Em.I18n.t('question.sure'),
+      body:Em.I18n.t('question.sure').format(''),
       primary:Em.I18n.t('yes'),
       primary:Em.I18n.t('yes'),
       secondary:Em.I18n.t('no'),
       secondary:Em.I18n.t('no'),