Browse Source

Merge pull request #11593 from miguelvazq/HPCC-20301

HPCC-20301 Contents displays no information

Reviewed-By: Gordon Smith <gordon.smith@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 6 years ago
parent
commit
30ca9b8cdd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      esp/src/eclwatch/LFDetailsWidget.js

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

@@ -434,7 +434,7 @@ define([
             this.setDisabled(this.id + "CopyDropDown", this.logicalFile.isDeleted());
             this.setDisabled(this.id + "RenameDropDown", this.logicalFile.isDeleted());
             this.setDisabled(this.id + "DesprayDropDown", this.logicalFile.isDeleted());
-            this.setDisabled(this.id + "_Content", this.logicalFile.isDeleted());
+            this.setDisabled(this.id + "_Content", this.logicalFile.isDeleted()  || !this.logicalFile.Ecl);
             this.setDisabled(this.id + "_Source", this.logicalFile.isDeleted() || !this.logicalFile.Ecl);
             this.setDisabled(this.id + "_DEF", this.logicalFile.isDeleted() || !this.logicalFile.Ecl);
             this.setDisabled(this.id + "_XML", this.logicalFile.isDeleted() || !this.logicalFile.Ecl);