Skip to content

Commit 739895d

Browse files
authored
Fix reversed condition for filtering by group (#3019)
1 parent 006938a commit 739895d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/academy/grading/Grading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const Grading: React.FC = () => {
5454
(page: number, filterParams: Object) => {
5555
dispatch(
5656
SessionActions.fetchGradingOverviews(
57-
showAllGroups,
57+
!showAllGroups,
5858
unpublishedToBackendParams(showAllSubmissions),
5959
paginationToBackendParams(page, pageSize),
6060
filterParams

0 commit comments

Comments
 (0)