tnx-shared 5.3.293 → 5.3.294
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/tnx-shared.umd.js +3 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/list-base.d.ts.map +1 -1
- package/esm2015/classes/base/list-base.js +4 -1
- package/fesm2015/tnx-shared.js +3 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -27879,6 +27879,9 @@
|
|
|
27879
27879
|
], __read(lstData.map(function (item, index) {
|
|
27880
27880
|
var row = [index + 1];
|
|
27881
27881
|
lstVisibleField.forEach(function (field) {
|
|
27882
|
+
if (typeof item[field] == 'boolean') {
|
|
27883
|
+
item[field] = item[field] ? 'Có' : 'Không';
|
|
27884
|
+
}
|
|
27882
27885
|
row.push(item[field]);
|
|
27883
27886
|
});
|
|
27884
27887
|
return row;
|