CSV export fails when titles contain #
-
Hi guys, thanks for the plugin.
The export fails when the title of some product contains a #.
The solutions would be this script in the export csv function:
filename = 'stock-manager-export.csv';
let blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' });
link = document.createElement('a');
link.setAttribute('href', URL.createObjectURL(blob));
link.setAttribute('download', filename);
link.click();
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.