X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1422847e9da8c3d96cf777bac1742e300435657c..c21c6582a12fe3968e3ef3a4786de5dfacce3b18:/src/views-components/resource-properties-form/property-value-field.tsx diff --git a/src/views-components/resource-properties-form/property-value-field.tsx b/src/views-components/resource-properties-form/property-value-field.tsx index 56b7fe05..b8e525bf 100644 --- a/src/views-components/resource-properties-form/property-value-field.tsx +++ b/src/views-components/resource-properties-form/property-value-field.tsx @@ -60,7 +60,11 @@ const PropertyValueInput = ({ vocabulary, propertyKeyId, propertyKeyName, ...pro label='Value' disabled={props.disabled} suggestions={getSuggestions(props.input.value, propertyKeyId, vocabulary)} - renderSuggestion={(s: PropFieldSuggestion) => (s.description || s.label)} + renderSuggestion={ + (s: PropFieldSuggestion) => s.synonyms && s.synonyms.length > 0 + ? `${s.label} (${s.synonyms.join('; ')})` + : s.label + } onSelect={handleSelect(PROPERTY_VALUE_FIELD_ID, data.form, props.input, props.meta)} onBlur={() => { // Case-insensitive search for the value in the vocabulary @@ -91,8 +95,9 @@ const matchTagValues = ({ vocabulary, propertyKeyId }: PropertyValueFieldProps) const getSuggestions = (value: string, tagName: string, vocabulary: Vocabulary) => { const re = new RegExp(escapeRegExp(value), "i"); - return getPreferredTagValues(tagName, vocabulary, value !== '').filter( - v => re.test((v.description || v.label)) && v.label !== value); + return getPreferredTagValues(tagName, vocabulary, value).filter( + val => (val.label !== value && re.test(val.label)) || + (val.synonyms && val.synonyms.some(s => re.test(s)))); }; const handleChange = (