ps-toolkit-ui 1.5.60 → 1.5.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2884,8 +2884,6 @@
2884
2884
  return '<a target="_blank" class="ltr" href="' + cv + '">' + cv + '</a>';
2885
2885
  }
2886
2886
  else if (col.type === exports.TableCollType.Image) {
2887
- col.withSearch = false;
2888
- col.sort = false;
2889
2887
  return '<img style="height: ' + this.table.height + 'px" alt="" src="' + this.service.environment.url + cv + '"/>';
2890
2888
  }
2891
2889
  else if (col.type === exports.TableCollType.FileSize) {
@@ -7745,8 +7743,8 @@
7745
7743
  this.name = name;
7746
7744
  this.class = cls;
7747
7745
  this.type = type;
7748
- this.withSearch = withSearch;
7749
- this.sort = sort;
7746
+ this.withSearch = type === exports.TableCollType.Image ? false : withSearch;
7747
+ this.sort = type === exports.TableCollType.Image ? false : sort;
7750
7748
  }
7751
7749
  return TableCollClass;
7752
7750
  }());