Refactor short URL export so that it is compatible with what Shlink expects

This commit is contained in:
Alejandro Celaya
2023-04-21 09:36:51 +02:00
parent 6fbe6c673b
commit 992b22fd24
4 changed files with 39 additions and 11 deletions

View File

@@ -24,7 +24,6 @@ export class ReportExporter {
private readonly exportCsv = (filename: string, rows: object[]) => {
const csv = this.jsonToCsv(rows);
saveCsv(this.window, csv, filename);
};
}