Я пытаюсь изменить границу моего TextField
, который отображается через мой Autocomplete
, но когда я добавляю опору InputProps
, Autocomplete
больше не отображает Chip
s
<Autocomplete
multiple
freeSolo
options={options}
renderTags={(value, { className, onDelete }) =>
value.map((option, index) => (
<Chip
key={index}
variant="outlined"
data-tag-index={index}
tabIndex={-1}
label={option}
className={className}
color="secondary"
onDelete={onDelete}
/>
))
}
renderInput={(params) => (
<TextField
{...params}
id={id}
className={textFieldStyles.searchField}
label={label}
value={value}
onChange={onChange}
variant="outlined"
//InputProps={{
// classes: {
// input: textFieldStyles.input,
// notchedOutline: textFieldStyles.notchedOutline
// }
//}}
InputLabelProps={{
classes: {
root: textFieldStyles.label
}
}}
/>
)}
/>
Приведенный выше код работает, и после того, как я раскомментирую строку InputProps
, ввод больше не выводит Chip
с, когда элемент выбран или введен.
Спасибо