Skip to content

Commit

Permalink
ERM-3431, License Export as CSV does not result in file download (#710)
Browse files Browse the repository at this point in the history
* ERM-3431, License Export as CSV does not result in file download

* tweak
  • Loading branch information
MonireRasouli authored and Jack-Golding committed Nov 27, 2024
1 parent 0e4956d commit 9ca0bb8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/utils/downloadBlob.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ const downloadBlob = (
}

return blob => {
const url = window.URL.createObjectURL(blob);
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = downloadName;
document.body.appendChild(a);
a.click();
a.remove();
URL.revokeObjectURL(url);
};
};

Expand Down

0 comments on commit 9ca0bb8

Please sign in to comment.