@seniorsistemas/angular-components 14.16.22 → 14.16.23
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/seniorsistemas-angular-components.umd.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/table/table-paging/table-paging.component.js +2 -2
- package/esm5/components/table/table-paging/table-paging.component.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js +1 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +1 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -4646,7 +4646,7 @@
|
|
|
4646
4646
|
}
|
|
4647
4647
|
fields.forEach(function (fieldName) {
|
|
4648
4648
|
var columnData = row[fieldName];
|
|
4649
|
-
if (
|
|
4649
|
+
if (columnData === null || columnData === undefined)
|
|
4650
4650
|
return;
|
|
4651
4651
|
var enumValue = columnData.toString().toLowerCase();
|
|
4652
4652
|
var translationKey = column.enumPrefix + enumValue;
|