diff --git a/frontend/src/components/projects/DownloadCSV.vue b/frontend/src/components/projects/DownloadCSV.vue index 2220f160..508ac7a5 100644 --- a/frontend/src/components/projects/DownloadCSV.vue +++ b/frontend/src/components/projects/DownloadCSV.vue @@ -51,7 +51,7 @@ const generateCSVAndDownload = async (): Promise => { // create an anchor element for downloading the file const a = document.createElement('a'); a.href = url; - a.download = (props.projectName ?? props.projectId) + '.scores'; + a.download = props.projectName + '.csv'; // click anchor element a.click();