From 1b65b0d4c0340ff94c9a8d20d919e0ae8c08c9d2 Mon Sep 17 00:00:00 2001 From: Charlotte Sacre Date: Tue, 6 Jun 2023 14:52:48 -0400 Subject: [PATCH] Candidate_list - make multiselect visit, site, cohort --- modules/candidate_list/jsx/candidateListIndex.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/candidate_list/jsx/candidateListIndex.js b/modules/candidate_list/jsx/candidateListIndex.js index dec814e26de..b45aba9f2bf 100644 --- a/modules/candidate_list/jsx/candidateListIndex.js +++ b/modules/candidate_list/jsx/candidateListIndex.js @@ -201,7 +201,7 @@ class CandidateListIndex extends Component { show: false, filter: { name: 'visitLabel', - type: 'select', + type: 'multiselect', options: options.visitlabel, }, }, @@ -210,7 +210,7 @@ class CandidateListIndex extends Component { show: true, filter: { name: 'site', - type: 'select', + type: 'multiselect', options: options.site, }, }, @@ -219,7 +219,7 @@ class CandidateListIndex extends Component { 'show': true, 'filter': { name: 'cohort', - type: 'select', + type: 'multiselect', options: options.cohort, }, },