Material-ui: [SOLVED] variant=“filled” does not work on <Select multiple> (Tag)

Created on 22 Dec 2019  Â·  3Comments  Â·  Source: mui-org/material-ui

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!

Select support

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

<Select
    variant="filled" 
     fullWidth
     labelId="select-label"
     multiple
      value={value}
      onChange={event => setValue(event.target.value)}
      renderValue={() => value.join(", ")}
        >

All 3 comments

đź‘‹ 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 !

Was this page helpful?
0 / 5 - 0 ratings

Related issues

TimoRuetten picture TimoRuetten  Â·  3Comments

reflog picture reflog  Â·  3Comments

finaiized picture finaiized  Â·  3Comments

mattmiddlesworth picture mattmiddlesworth  Â·  3Comments

ryanflorence picture ryanflorence  Â·  3Comments