@esfaenza/extensions 11.2.38 → 11.2.39

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.
@@ -869,9 +869,9 @@
869
869
  Object.defineProperty(target, propertyKey + csvVisPrefix, { value: !!header, writable: false });
870
870
  Object.defineProperty(target, propertyKey + csvHdrPrefix, { value: header, writable: false });
871
871
  if (target[exportList])
872
- target[exportList].push(propertyKey);
872
+ target[exportList].push(propertyKey + csvVisPrefix);
873
873
  else
874
- target[exportList] = [propertyKey];
874
+ target[exportList] = [propertyKey + csvVisPrefix];
875
875
  };
876
876
  };
877
877
  /**
@@ -921,9 +921,9 @@
921
921
  Object.defineProperty(target, propertyKey + prop + csvVisPrefix, { value: toEmit, writable: false });
922
922
  Object.defineProperty(target, propertyKey + prop + csvHdrPrefix, { value: lbl, writable: false });
923
923
  if (target[exportList])
924
- target[exportList].push(propertyKey + prop);
924
+ target[exportList].push(propertyKey + prop + csvVisPrefix);
925
925
  else
926
- target[exportList] = [propertyKey + prop];
926
+ target[exportList] = [propertyKey + prop + csvVisPrefix];
927
927
  }
928
928
  }
929
929
  }; };