Hotfix_DownloadCSV #2110

Merged
jsegarra merged 2 commits from Hotfix_DownloadCSV into master 2024-02-29 07:18:40 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 599e8761c1 - Show all commits

View File

@ -79,6 +79,6 @@ module.exports = Self => {
ORDER BY s.ticketFk, s.created`, [id]);
const content = toCSV(sales);
return [content, 'text/csv', `inline; filename="doc-${id}.pdf"`];
return [content, 'text/csv', `inline; filename="doc-${id}.csv"`];
};
};