Skip to content

Commit

Permalink
chore: add proper extension to grades csv file #400
Browse files Browse the repository at this point in the history
  • Loading branch information
bsilkyn committed May 5, 2024
1 parent e3f32b0 commit 4794ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/projects/DownloadCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const generateCSVAndDownload = async (): Promise<void> => {
// 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();
Expand Down

0 comments on commit 4794ad1

Please sign in to comment.