I don't know why the style is not applied. Can anyone solve this problem?
https://codesandbox.io/s/select-multiple-tags-variant-filled-hc9y7
Who can help I thank!
đź‘‹ Thanks for using Material-UI!
We use GitHub issues exclusively as a bug and feature requests tracker, however,
this issue appears to be a support request.
For support, please check out https://material-ui.com/getting-started/support/. Thanks!
If you have a question on StackOverflow, you are welcome to link to it here, it might help others.
If your issue is subsequently confirmed as a bug, and the report follows the issue template, it can be reopened.
I also have that problem I solved it by removing input prop although I don't know what side effects it has
<Select
variant="filled"
fullWidth
labelId="select-label"
multiple
value={value}
onChange={event => setValue(event.target.value)}
renderValue={() => value.join(", ")}
>
I also have that problem I solved it by removing input prop although I don't know what side effects it has
<Select variant="filled" fullWidth labelId="select-label" multiple value={value} onChange={event => setValue(event.target.value)} renderValue={() => value.join(", ")} >SOLVED!
Tanks @iamsteeve !
Most helpful comment
I also have that problem I solved it by removing input prop although I don't know what side effects it has