You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/05/01 23:10:49 UTC

svn commit: r1478190 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/controllers/main/admin/user.js

Author: yusaku
Date: Wed May  1 21:10:48 2013
New Revision: 1478190

URL: http://svn.apache.org/r1478190
Log:
AMBARI-2052. Fix delete user popup. (yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/controllers/main/admin/user.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1478190&r1=1478189&r2=1478190&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Wed May  1 21:10:48 2013
@@ -823,6 +823,8 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2052. Fix delete user popup. (yusaku)
+
  AMBARI-2065. Hadoop group customization does not take affect. (smohanty)
 
  AMBARI-2062. Service versions shown during install dont match installed

Modified: incubator/ambari/trunk/ambari-web/app/controllers/main/admin/user.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/main/admin/user.js?rev=1478190&r1=1478189&r2=1478190&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/main/admin/user.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/main/admin/user.js Wed May  1 21:10:48 2013
@@ -39,11 +39,10 @@ App.MainAdminUserController = Em.Control
 
       return;
     }
-    ;
 
     App.ModalPopup.show({
       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'),
       secondary:Em.I18n.t('no'),