We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e329b commit 114d256Copy full SHA for 114d256
JeMPI_Apps/JeMPI_UI/src/components/shared/SelectDropdown.tsx
@@ -70,13 +70,12 @@ const SelectDropdown = <T extends string>({
70
value={selectedValuesList}
71
onChange={handleChange}
72
input={<OutlinedInput label={label} />}
73
- renderValue={selected => {
74
- return (
75
- <Box sx={{ display: 'flex', flexWrap: 'wrap', gap: 0.5 }}>
76
- <Chip key={selected.toString()} label={selected} />
77
- </Box>
78
- );
79
- }}
+ renderValue={selected => (
+ <Box sx={{ display: 'flex', flexWrap: 'wrap', gap: 0.5 }}>
+ <Chip key={selected.toString()} label={selected} />
+ </Box>
+ )
+ }
80
MenuProps={MenuProps}
81
>
82
{listValues.map(value => (
0 commit comments