Browse Source

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

Found files via XRef were unable to be attached to the running Dali, resulting in an error.

Signed-off-by: Dan S. Camper <dan.camper@lexisnexisrisk.com>
Dan S. Camper 8 years ago
parent
commit
2063e847af
1 changed files with 1 additions and 1 deletions
  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 selections = this.grid.getSelected();
             var list = this.arrayToList(selections, "Name");
             var list = this.arrayToList(selections, "Name");
             if (confirm(this.i18n.AddTheseFilesToDali + "\n" + list)) {
             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();
                     context.refreshGrid();
                 });
                 });
             }
             }