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 2015/12/11 08:21:13 UTC

ambari git commit: AMBARI-14335. Hive view: Fails to come up in firefox with the JS error in console. (Dipayan Bhowmick via yusaku)

Repository: ambari
Updated Branches:
  refs/heads/trunk 7923e59cd -> 655422321


AMBARI-14335. Hive view: Fails to come up in firefox with the JS error in console. (Dipayan Bhowmick via yusaku)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/65542232
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/65542232
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/65542232

Branch: refs/heads/trunk
Commit: 65542232144200adfd9530c076278bc8f55c9403
Parents: 7923e59
Author: Yusaku Sako <yu...@hortonworks.com>
Authored: Thu Dec 10 23:20:43 2015 -0800
Committer: Yusaku Sako <yu...@hortonworks.com>
Committed: Thu Dec 10 23:21:08 2015 -0800

----------------------------------------------------------------------
 .../main/resources/ui/hive-web/app/helpers/format-column-type.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/65542232/contrib/views/hive/src/main/resources/ui/hive-web/app/helpers/format-column-type.js
----------------------------------------------------------------------
diff --git a/contrib/views/hive/src/main/resources/ui/hive-web/app/helpers/format-column-type.js b/contrib/views/hive/src/main/resources/ui/hive-web/app/helpers/format-column-type.js
index 8566b5e..13528b7 100644
--- a/contrib/views/hive/src/main/resources/ui/hive-web/app/helpers/format-column-type.js
+++ b/contrib/views/hive/src/main/resources/ui/hive-web/app/helpers/format-column-type.js
@@ -23,8 +23,8 @@
 import Ember from "ember";
 
 var columnTypeFormatter = function(column) {
-  let type = column.type;
-  let ext = type;
+  var type = column.type;
+  var ext = type;
   if( type === "VARCHAR" || type === "CHAR" || type == "DECIMAL"  ) {
       ext += '(' + column.precision;
     if (type == "DECIMAL") {