Skip to content

Commit

Permalink
[Candidate List] Make multiselect visit, site, cohort (#8730)
Browse files Browse the repository at this point in the history
The filters for site, cohort and visit label are now multiselect on the candidate_list page.
  • Loading branch information
charlottesce committed Aug 8, 2023
1 parent 0871aa3 commit 211aa63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/candidate_list/jsx/candidateListIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class CandidateListIndex extends Component {
show: false,
filter: {
name: 'visitLabel',
type: 'select',
type: 'multiselect',
options: options.visitlabel,
},
},
Expand All @@ -210,7 +210,7 @@ class CandidateListIndex extends Component {
show: true,
filter: {
name: 'site',
type: 'select',
type: 'multiselect',
options: options.site,
},
},
Expand All @@ -219,7 +219,7 @@ class CandidateListIndex extends Component {
'show': true,
'filter': {
name: 'cohort',
type: 'select',
type: 'multiselect',
options: options.cohort,
},
},
Expand Down

0 comments on commit 211aa63

Please # to comment.