Skip to content

Commit

Permalink
fix: maintain default filter with pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
pkulkark committed Sep 16, 2024
1 parent 594bf8d commit c4c4695
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/studio-home/data/slice.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const slice = createSlice({
search: undefined,
order: 'display_name',
archivedOnly: undefined,
activeOnly: undefined,
activeOnly: true,
isFiltered: false,
cleanFilters: false,
},
Expand Down
2 changes: 1 addition & 1 deletion src/studio-home/data/slice.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('updateStudioHomeCoursesCustomParams action', () => {
search: undefined,
order: 'display_name',
archivedOnly: undefined,
activeOnly: undefined,
activeOnly: true,
isFiltered: false,
cleanFilters: false,
},
Expand Down

0 comments on commit c4c4695

Please sign in to comment.