瀏覽代碼

Merge pull request #7863 from GordonSmith/HPCC-13998

HPCC-13998 Monitoring Icon Selects Wrong Tab

Reviewed-By: Miguel Vazquez <miguel.vazquez@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 9 年之前
父節點
當前提交
b5114a0351
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      esp/src/eclwatch/HPCCPlatformWidget.js

+ 3 - 1
esp/src/eclwatch/HPCCPlatformWidget.js

@@ -411,7 +411,9 @@ define([
         _onMonitoring: function (evt) {
             this.stackContainer.selectChild(this.operationsPage);
             this.operationsPage.ensureWidget().then(function (operationsPage) {
-                operationsPage.widget.TabContainer.selectChild(operationsPage.widget._Monitoring);
+                operationsPage.widget._Topology.ensureWidget().then(function (topologyPage) {  //  This is needed otherwise topology will steal focus the first time it is delay loaded
+                    operationsPage.selectChild(operationsPage.widget._Monitoring);
+                });
             });
         },