Skip to content

Commit

Permalink
Fixed countryId overflow in registration csv for countries with commm…
Browse files Browse the repository at this point in the history
…a (,) in name (#10337)
  • Loading branch information
pranav-027 authored Nov 29, 2024
1 parent 9a40091 commit 2a573bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function V3csvExport(selected, registrations, competition) {
.forEach((registration) => {
csvContent += `${registration.competing.registration_status === 'accepted' ? 'a' : 'p'},${
registration.user.name
},${registration.user.country.name},${
},"${registration.user.country.name}",${
registration.user.wca_id
},${registration.user.dob},${
registration.user.gender
Expand Down

0 comments on commit 2a573bd

Please sign in to comment.