ps-toolkit-ui 1.5.6 → 1.5.7

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.
@@ -2829,7 +2829,11 @@
2829
2829
  TableRowComponent.prototype.getCell = function (col) {
2830
2830
  console.log('getCell');
2831
2831
  var cv = _.get(this.row.Data, col.name);
2832
- if (col.fun != null) {
2832
+ console.log(cv, 'cv');
2833
+ if (cv === null) {
2834
+ return '';
2835
+ }
2836
+ else if (col.fun != null) {
2833
2837
  return col.fun(this.row.Data);
2834
2838
  }
2835
2839
  else if (col.enum !== null) {