-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change MuiAutocomplete from Input to Textfield #1982
Conversation
<MuiAutocomplete | ||
{...props} | ||
isValid={isValid} | ||
visible={visible} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
visible
is already handed over via the...props
so we don't need to do this explicitely.- There is no need to determine and hand over
isValid
here. Just do the calculation within theMuiAutocomplete
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, yes visible
is unnecessary.
I added isValid
, because its part of the EnumCellProps
interface.
isValid={isValid} | ||
visible={visible} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
closes eclipsesource#1965 Signed-off-by: Lukas Boll lukas-bool@web.de
I checked the control options and they are working. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
closes #1965