synapse-react-client 3.0.9 → 3.0.10

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.
@@ -96595,8 +96595,7 @@ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_liter
96595
96595
  const isShowingDirectDownloadColumn = entity && (isEntityView(entity) && hasFilesInView(entity) || isDataset(entity)) && showDownloadColumn && isLoggedIn && !containsGroupBy;
96596
96596
  const tableEntityId = lastQueryRequest == null ? void 0 : lastQueryRequest.entityId;
96597
96597
  return /* @__PURE__ */ React399.createElement("div", {
96598
- style: { minHeight: "400px" },
96599
- className: "SRC-overflowAuto",
96598
+ className: "SynapseTable SRC-overflowAuto",
96600
96599
  "data-testid": "SynapseTable"
96601
96600
  }, /* @__PURE__ */ React399.createElement("table", {
96602
96601
  ref: (node2) => this.tableElement = node2,
@@ -96725,7 +96724,7 @@ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_liter
96725
96724
  }
96726
96725
  enableResize() {
96727
96726
  if (!this.resizer) {
96728
- if (this.tableElement) {
96727
+ if (this.tableElement && this.getLengthOfPropsData() > 1) {
96729
96728
  this.resizer = new import_column_resizer.default(this.tableElement, RESIZER_OPTIONS);
96730
96729
  }
96731
96730
  } else {