浏览代码

Merge pull request #10035 from miguelvazq/HPCC-17639

HPCC-17639 Cannot delete files in i18n modes

Reviewed-By: Gordon Smith <gordon.smith@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 8 年之前
父节点
当前提交
c7aea17b16
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      esp/src/eclwatch/DFUQueryWidget.js

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

@@ -216,7 +216,7 @@ define([
             var list = this.arrayToList(selection, "Name");
             if (confirm(this.i18n.DeleteSelectedFiles + "\n" + list)) {
                 var context = this;
-                WsDfu.DFUArrayAction(selection, this.i18n.Delete).then(function (response) {
+                WsDfu.DFUArrayAction(selection, "Delete").then(function (response) {
                     context.refreshGrid(true);
                 });
             }