react-crud-mobile 1.0.701 → 1.0.703

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.
@@ -718,7 +718,7 @@ function UIListRow(props) {
718
718
  var index = props.index;
719
719
  var original = scope.original;
720
720
  var item = props.item;
721
- var cols = reactCrudUtils.Utils.nvl(original.cols, 1);
721
+ var cols = scope.getPart('cols', undefined, 1);
722
722
  var rowWidth = Math.floor(100 / cols) + '%';
723
723
  var styles = (_repeat$list = {
724
724
  repeat: stylesRepeat,
@@ -818,7 +818,7 @@ function UIList(props) {
818
818
  var scope = props.scope;
819
819
  var crud = scope.crud;
820
820
  var original = scope.original;
821
- var cols = reactCrudUtils.Utils.nvl(original.cols, 1);
821
+ var cols = reactCrudUtils.Utils.nvl(scope.getPart('cols', undefined, 1));
822
822
  var items = reactCrudUtils.Utils.nvl(scope.getItems(), []);
823
823
  var styles = (_repeat$list = {
824
824
  repeat: stylesRepeat$1,