dce-reactkit 3.2.2-beta.30 → 3.2.2-beta.31

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.
package/dist/cjs/index.js CHANGED
@@ -2527,7 +2527,7 @@ const IntelliTable = (props) => {
2527
2527
  }
2528
2528
  else if (column.type === ParamType$1.String) {
2529
2529
  fullValue = String(value).trim();
2530
- const noValue = (value.trim().length) === 0;
2530
+ const noValue = (String(fullValue).trim().length === 0);
2531
2531
  visibleValue = (noValue
2532
2532
  ? (React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, { icon: freeSolidSvgIcons.faMinus }))
2533
2533
  : fullValue);