We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 093e298 commit 50b407bCopy full SHA for 50b407b
2 files changed
.DS_Store
0 Bytes
frontend/src/components/pages/admission.tsx
@@ -683,7 +683,8 @@ export const Admission = () => {
683
684
const exportToCsv = () => {
685
const header = [
686
- "Name",
+ "FirstName",
687
+ "LastName",
688
"Email",
689
"Admitted",
690
"Confirmed",
@@ -715,6 +716,8 @@ export const Admission = () => {
715
716
717
const rows = applicationsSortedByDate.map((application, index) => {
718
return [
719
+ application.user.firstName,
720
+ application.user.lastName,
721
application.user.id,
722
application.user.email,
723
application.user.admitted,
0 commit comments