Browse Source

YARN-7022. Improve click interaction in queue topology in new YARN UI. Contributed by Abdullah Yousufi.

Sunil G 7 years ago
parent
commit
ec3fb45772

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/components/tree-selector.js

@@ -129,7 +129,7 @@ export default Ember.Component.extend({
     var nodeEnter = node.enter().append("g")
     var nodeEnter = node.enter().append("g")
       .attr("class", "node")
       .attr("class", "node")
       .attr("transform", function() { return "translate(" + source.y0 + "," + source.x0 + ")"; })
       .attr("transform", function() { return "translate(" + source.y0 + "," + source.x0 + ")"; })
-      .on("mouseover", function(d){
+      .on("click", function(d){
         if (d.queueData.get("name") !== this.get("selected")) {
         if (d.queueData.get("name") !== this.get("selected")) {
             document.location.href = "#/yarn-queues/" + d.queueData.get("name") + "!";
             document.location.href = "#/yarn-queues/" + d.queueData.get("name") + "!";
         }
         }
@@ -145,7 +145,7 @@ export default Ember.Component.extend({
         }, 100);
         }, 100);
 
 
       }.bind(this))
       }.bind(this))
-    .on("click", function (d) {
+    .on("dblclick", function (d) {
       document.location.href = "#/yarn-queue/" + d.queueData.get("name") + "/info";
       document.location.href = "#/yarn-queue/" + d.queueData.get("name") + "/info";
     });
     });