Skip to content

Commit 032c5cf

Browse files
Merge pull request #5111 from topcoder-platform/issue-5071-pkdurlabhji
issue 5071 fix
2 parents 9858be2 + 345e915 commit 032c5cf

File tree

1 file changed

+2
-1
lines changed
  • src/shared/components/challenge-listing/Filters/FiltersPanel

1 file changed

+2
-1
lines changed

src/shared/components/challenge-listing/Filters/FiltersPanel/index.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export default function FiltersPanel({
359359
}}
360360
options={['Active', 'Completed', 'All'].map(mapOps)}
361361
simpleValue
362-
value={filterState.status || 'Active'}
362+
value={filterState.status || 'All'}
363363
/>
364364
</div>
365365
) : null
@@ -433,6 +433,7 @@ export default function FiltersPanel({
433433
events: [],
434434
endDateStart: null,
435435
startDateEnd: null,
436+
status: 'All',
436437
});
437438
selectCommunity(defaultCommunityId);
438439
setSearchText('');

0 commit comments

Comments
 (0)