diff --git a/hypha/apply/funds/tables.py b/hypha/apply/funds/tables.py index 26e23e6b63..b5274a923d 100644 --- a/hypha/apply/funds/tables.py +++ b/hypha/apply/funds/tables.py @@ -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, )