File tree 1 file changed +3
-3
lines changed
src/pages/data_submission/consent_group
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const searchOntologies = (query, callback) => {
26
26
DAR . getAutoCompleteOT ( query ) . then (
27
27
items => {
28
28
options = items . map ( function ( item ) {
29
- return item . label ;
29
+ return { displayText : item . label , id : item . id } ;
30
30
} ) ;
31
31
callback ( options ) ;
32
32
} ) ;
@@ -240,7 +240,6 @@ export const EditConsentGroup = (props) => {
240
240
isMulti : true ,
241
241
isCreatable : true ,
242
242
isAsync : true ,
243
- optionsAreString : true ,
244
243
loadOptions : searchOntologies ,
245
244
id : idx + '_diseaseSpecificUseText' ,
246
245
name : 'diseaseSpecificUse' ,
@@ -253,10 +252,11 @@ export const EditConsentGroup = (props) => {
253
252
onValidationChange ( { key : 'diseaseSpecificUse' , validation } ) ;
254
253
} ,
255
254
onChange : ( { key, value, isValid } ) => {
255
+ const doids = value . map ( ( v ) => v . id ) ;
256
256
setSelectedDiseases ( value ) ;
257
257
onChange ( {
258
258
key : key ,
259
- value : value ,
259
+ value : doids ,
260
260
isValid : isValid
261
261
} ) ;
262
262
} ,
You can’t perform that action at this time.
0 commit comments