Skip to content

Commit

Permalink
Race management view can now be filtered by track (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfsmith committed Apr 4, 2024
1 parent a450213 commit 4dbec74
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,10 @@ export const FilteringProperties = () => {
propertyLabel: i18next.t('race-admin.username'),
operators: [':', '!:', '=', '!='],
},
{
key: 'trackId',
propertyLabel: i18next.t('race-admin.track-id'),
operators: [':', '!:', '=', '!='],
},
].sort((a, b) => a.propertyLabel.localeCompare(b.propertyLabel));
};

0 comments on commit 4dbec74

Please sign in to comment.