Skip to content

Commit

Permalink
Fix filters on reviewer leaderboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
frjo committed Nov 22, 2024
1 parent d5da9ab commit 1072a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypha/apply/funds/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,12 +623,12 @@ class ReviewerLeaderboardFilter(filters.FilterSet):
queryset=get_all_reviewers,
)
funds = Select2ModelMultipleChoiceFilter(
field_name="submission__page",
field_name="applicationsubmission__page",
label=_("Funds"),
queryset=get_used_funds,
)
rounds = Select2ModelMultipleChoiceFilter(
field_name="submission__round",
field_name="applicationsubmission__round",
label=_("Rounds"),
queryset=get_used_rounds,
)
Expand Down

0 comments on commit 1072a0a

Please sign in to comment.