git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1485440 13f79535-47bb-0310-9956-ffa450edef68
@@ -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)
@@ -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');
}