Skip to content

Commit

Permalink
Merge pull request #271 from HackBeanpot/LD-fix-table-sorting
Browse files Browse the repository at this point in the history
Fix Applicant Table Sorting
  • Loading branch information
jmsargent10 authored Jul 12, 2024
2 parents 056a74f + 85ae55e commit 528da95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/admin-tabs/Applicants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const columns = [
},
{
title: 'School',
dataIndex: 'school',
dataIndex: 'applicationResponses.school',
filters: (
Questions.find((question) => question.field === 'school') as DropdownQuestionType
).options.map(({ name }) => ({
Expand All @@ -63,7 +63,7 @@ const columns = [
},
{
title: 'Year',
dataIndex: 'yearOfEducation',
dataIndex: 'applicationResponses.yearOfEducation',
filters: (
Questions.find((question) => question.field === 'yearOfEducation') as DropdownQuestionType
).options.map(({ name }) => ({
Expand Down

0 comments on commit 528da95

Please sign in to comment.