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.
- package/bundles/ps-toolkit-ui.umd.js +5 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/row/table.row.component.js +6 -2
- package/fesm2015/ps-toolkit-ui.js +5 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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) {
|