浏览代码

AMBARI-2157. Page title and cluster name shown in the header are not the same case. (yusaku)

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

+ 3 - 0
CHANGES.txt

@@ -873,6 +873,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2157. Page title and cluster name shown in the header are not the same
+ case. (yusaku)
+
  AMBARI-2183. Postgres setup failed. (smohanty)
 
  AMBARI-2182. Expose "active" attribute for Stack resource. (smohanty)

+ 0 - 1
ambari-web/app/controllers/main.js

@@ -26,7 +26,6 @@ App.MainController = Em.Controller.extend({
     var name = App.router.get('clusterController.clusterName');
     if (name) {
       name = name.length > 13 ? name.substr(0, 10) + "..." : name;
-      name = name.capitalize();
     } else {
       name = Em.I18n.t('common.loading');
     }