Changed GET to POST for export
This commit is contained in:
@@ -66,7 +66,7 @@ export class DeltagareExportComponent {
|
||||
.pipe(take(1))
|
||||
.subscribe({
|
||||
next: response => {
|
||||
const blob = new Blob([response], { type: 'application/csv' });
|
||||
const blob = new Blob([response], { type: 'text/csv' });
|
||||
saveAs(blob, 'deltagare-export.csv');
|
||||
this.fetchIsLoading$.next(false);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user