@ssplib/react-components 0.0.133 → 0.0.134

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.
@@ -240,7 +240,7 @@ function Table({ columns, fetchFunc, emptyMsg = {
240
240
  values.push(value);
241
241
  }
242
242
  });
243
- const csvData = hideTitleCSV ? '\uFEFF' + header + values.join('\n') : values.join('\n');
243
+ const csvData = hideTitleCSV ? values.join('\n') : '\uFEFF' + header + values.join('\n');
244
244
  if (values.length > 0)
245
245
  zip.file(`${objKey.normalize('NFD').replace(/[\u0300-\u036f]/g, '')}.csv`, csvData);
246
246
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssplib/react-components",
3
- "version": "0.0.133",
3
+ "version": "0.0.134",
4
4
  "description": "SSP React Components",
5
5
  "main": "index.js",
6
6
  "author": "Pedro Henrique <sr.hudrick@gmail.com>",