@@ -48,8 +48,8 @@ export default class InclusionDropdown extends React.PureComponent<Props, State>
48
48
// Set the text and options to display, depending on inclusion state and
49
49
// whether it is the first panel or not
50
50
if ( isFirst ) {
51
- opts = [ 'Patients Who' , 'Not Patients Who' ] ;
52
- displayText = isInclusionCriteria ? 'Patients Who' : 'Not Patients Who' ;
51
+ opts = [ 'Participants Who' , 'Not Participants Who' ] ;
52
+ displayText = isInclusionCriteria ? 'Participants Who' : 'Not Participants Who' ;
53
53
}
54
54
else {
55
55
opts = [ 'And' , 'And Not' ] ;
@@ -83,7 +83,7 @@ export default class InclusionDropdown extends React.PureComponent<Props, State>
83
83
private selectItem = ( item : any ) => {
84
84
const { index, inclusionDropdownType, panel, handlers } = this . props ;
85
85
const text = item . target . innerText ;
86
- const include = text === 'Patients Who' || text === 'And' ? true : false ;
86
+ const include = text === 'Participants Who' || text === 'And' ? true : false ;
87
87
88
88
// Update state
89
89
if ( inclusionDropdownType === INCLUSION_DROPDOWN_TYPE . PANEL ) {
@@ -92,4 +92,4 @@ export default class InclusionDropdown extends React.PureComponent<Props, State>
92
92
handlers . handleSubPanelInclusion ( panel . index , index , include ) ;
93
93
}
94
94
}
95
- }
95
+ }
0 commit comments