fix: autocomplete input not showing available options
fix: remove log
This commit is contained in:
parent
17e1da61f3
commit
175a98d50f
4 changed files with 28 additions and 6 deletions
|
|
@ -54,12 +54,22 @@ const Wizard = ({ machine, locale, onClose, save, error }) => {
|
|||
{
|
||||
type: 'top',
|
||||
display: 'Cassette 1 (Top)',
|
||||
component: Autocomplete
|
||||
component: Autocomplete,
|
||||
inputProps: {
|
||||
options: R.map(it => ({ code: it, display: it }))(options),
|
||||
labelProp: 'display',
|
||||
valueProp: 'code'
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'bottom',
|
||||
display: 'Cassette 2',
|
||||
component: Autocomplete
|
||||
component: Autocomplete,
|
||||
inputProps: {
|
||||
options: R.map(it => ({ code: it, display: it }))(options),
|
||||
labelProp: 'display',
|
||||
valueProp: 'code'
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'zeroConfLimit',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue