Skip to content

Commit

Permalink
change sort prop to match backend sort property
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosSia committed Apr 9, 2021
1 parent 73f3f88 commit 2625258
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ export const eventAttendeeSortButtonList: IEventAttendeeSortButtonInfo[] = [
{
buttonName: 'Older Year Session First',
buttonTranslateKey: 'clubmanagementApp.eventAttendee.sortBy.sortByYearSessionAsc',
buttonSortProp: 'yearSession',
buttonSortProp: 'year_session',
buttonOrderProp: 'asc'
},
{
buttonName: 'Newer Year Session First',
buttonTranslateKey: 'clubmanagementApp.eventAttendee.sortBy.sortByYearSessionDesc',
buttonSortProp: 'yearSession',
buttonSortProp: 'year_session',
buttonOrderProp: 'desc'
},
{
buttonName: 'Provide Transport First',
buttonTranslateKey: 'clubmanagementApp.eventAttendee.sortBy.provideTransportFirst',
buttonSortProp: 'provideTransport',
buttonSortProp: 'provide_transport',
buttonOrderProp: 'desc'
},
{
buttonName: 'Does Not Provide Transport First',
buttonTranslateKey: 'clubmanagementApp.eventAttendee.sortBy.noProvideTransportFirst',
buttonSortProp: 'provideTransport',
buttonSortProp: 'provide_transport',
buttonOrderProp: 'asc'
}
];

0 comments on commit 2625258

Please sign in to comment.