瀏覽代碼

HPCC-23846 Remove config option in certain cases

Since configuration is not possible in DropZone or FTSlave I am removing
the get configuration icon in system servers.

Signed-off by: Miguel Vazquez <miguel.vazquez@lexisnexisrisk.com>
Miguel Vazquez 5 年之前
父節點
當前提交
8fb0360dcb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      esp/src/eclwatch/SystemServersQueryWidget.js

+ 1 - 1
esp/src/eclwatch/SystemServersQueryWidget.js

@@ -166,7 +166,7 @@ define([
                         width: 10,
                         sortable: false,
                         renderCell: function (object, value, node, options) {
-                            if (object.Directory) {
+                            if (object.Directory && object.Type && object.Type !== "FTSlaveProcess") {
                                 domClass.add(node, "centerInCell");
                                 node.innerHTML = "<a href='#' class='gridClick'/>" + Utility.getImageHTML("configuration.png", context.i18n.Configuration) + "</a>";
                             }