Skip to content

Commit 0154ff9

Browse files
authored
[DUOS-2803] Return item label and DOID (#2404)
1 parent 0ac2a75 commit 0154ff9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/data_submission/consent_group/EditConsentGroup.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const searchOntologies = (query, callback) => {
2626
DAR.getAutoCompleteOT(query).then(
2727
items => {
2828
options = items.map(function (item) {
29-
return item.label;
29+
return { displayText: item.label, id: item.id };
3030
});
3131
callback(options);
3232
});
@@ -240,7 +240,6 @@ export const EditConsentGroup = (props) => {
240240
isMulti: true,
241241
isCreatable: true,
242242
isAsync: true,
243-
optionsAreString: true,
244243
loadOptions: searchOntologies,
245244
id: idx + '_diseaseSpecificUseText',
246245
name: 'diseaseSpecificUse',
@@ -253,10 +252,11 @@ export const EditConsentGroup = (props) => {
253252
onValidationChange({ key: 'diseaseSpecificUse', validation });
254253
},
255254
onChange: ({ key, value, isValid }) => {
255+
const doids = value.map((v) => v.id);
256256
setSelectedDiseases(value);
257257
onChange({
258258
key: key,
259-
value: value,
259+
value: doids,
260260
isValid: isValid
261261
});
262262
},

0 commit comments

Comments
 (0)