@descope/web-components-ui 1.0.351 → 1.0.352

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -8776,6 +8776,14 @@ const GridMixin = (superclass) =>
8776
8776
  // disable the grid sort
8777
8777
  this.baseElement._mapSorters = () => {};
8778
8778
 
8779
+ // there is an issue in vaadin that on some cases when trying to render the details panel, the row is null and this fn throwing
8780
+ // so we override it to prevent the error
8781
+ const origUpdateDetailsCellHeight = this.baseElement._updateDetailsCellHeight;
8782
+ this.baseElement._updateDetailsCellHeight = (row) => {
8783
+ if (!row) return;
8784
+ origUpdateDetailsCellHeight.call(this.baseElement, row);
8785
+ };
8786
+
8779
8787
  this.baseElement.rowDetailsRenderer = this.#rowDetailsRenderer.bind(this);
8780
8788
  }
8781
8789