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.
@@ -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;