Skip to content

Commit

Permalink
chore: lint fix #400
Browse files Browse the repository at this point in the history
  • Loading branch information
bsilkyn committed May 7, 2024
1 parent df28c11 commit b479e97
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 @@ -36,7 +36,7 @@ const generateCSVAndDownload = async (): Promise<void> => {
students.value
?.map((student) => {
// single csv line
return `#${student.student_id},${student.last_name},${student.first_name},${student.email},${group.score * 10 / props.project.max_score},#`;
return `#${student.student_id},${student.last_name},${student.first_name},${student.email},${(group.score * 10) / props.project.max_score},#`;
})
.join('\n') ?? ''
);
Expand Down

0 comments on commit b479e97

Please sign in to comment.