@smartbit4all/ng-client 3.3.69 → 3.3.70

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.
@@ -9730,9 +9730,11 @@ class SmartGridComponent {
9730
9730
  else if (kind === GridViewDescriptorKindEnum.CARDS) {
9731
9731
  layoutDef = SmartLayoutDef.CARD;
9732
9732
  }
9733
- if (layoutDef) {
9734
- this.smartGrid.layoutDef = layoutDef;
9733
+ else {
9734
+ // default fallback TABLE
9735
+ layoutDef = SmartLayoutDef.TABLE;
9735
9736
  }
9737
+ this.smartGrid.layoutDef = layoutDef;
9736
9738
  }
9737
9739
  if (gridModel?.paginator !== undefined) {
9738
9740
  this.smartGrid.paginator = gridModel.paginator;