浏览代码

Merge pull request #10274 from dcamper/hpcc-18055-xref-attach-found

HPCC-18055 ECL Watch: Fix XRef's attaching found files

Reviewed-By: Miguel Vazquez <miguel.vazquez@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 8 年之前
父节点
当前提交
f4f98b55b5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      esp/src/eclwatch/XrefFoundFilesWidget.js

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

@@ -121,7 +121,7 @@ define([
             var selections = this.grid.getSelected();
             var list = this.arrayToList(selections, "Name");
             if (confirm(this.i18n.AddTheseFilesToDali + "\n" + list)) {
-                WsDFUXref.DFUXRefArrayAction(selections, this.i18n.Attach, context.params.Name, "Attach").then(function (response) {
+                WsDFUXref.DFUXRefArrayAction(selections, "Attach", context.params.Name, "Found").then(function (response) {
                     context.refreshGrid();
                 });
             }