Explorar o código

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 %!s(int64=8) %!d(string=hai) anos
pai
achega
2063e847af
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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();
                 });
             }