| @@ -297,7 +297,7 @@ function SearchBox<T extends string>({ | |||||
| </MenuItem> | </MenuItem> | ||||
| ); | ); | ||||
| }} | }} | ||||
| renderInput={(params) => <TextField {...params} />} | |||||
| renderInput={(params) => <TextField {...params} variant="outlined" label={c.label}/>} | |||||
| /> | /> | ||||
| )} | )} | ||||
| {c.type === "autocomplete" && !c.options.some(option => Boolean(option.group)) && ( | {c.type === "autocomplete" && !c.options.some(option => Boolean(option.group)) && ( | ||||
| @@ -356,7 +356,7 @@ function SearchBox<T extends string>({ | |||||
| </MenuItem> | </MenuItem> | ||||
| ); | ); | ||||
| }} | }} | ||||
| renderInput={(params) => <TextField {...params} />} | |||||
| renderInput={(params) => <TextField {...params} variant="outlined" label={c.label}/>} | |||||
| /> | /> | ||||
| )} | )} | ||||
| {c.type === "number" && ( | {c.type === "number" && ( | ||||