react-crud-mobile 1.3.110 → 1.3.111

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.
@@ -922,9 +922,9 @@ function UIListRow(props) {
922
922
  minHeight: 40
923
923
  }));
924
924
  if (row.selected) {
925
- css = _extends({}, row.getStyle('rowSelected', {}));
925
+ css = _extends({}, css, row.getStyle('rowSelected', {}));
926
926
  } else {
927
- css = _extends({}, row.getStyle('rowUnSelected', {}));
927
+ css = _extends({}, css, row.getStyle('rowUnSelected', {}));
928
928
  }
929
929
  if (cols > 0) {
930
930
  css.width = rowWidth;