-
Notifications
You must be signed in to change notification settings - Fork 841
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
Fixes EuiComboBox Label not calculated correctly #3501
Conversation
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
getSelectedOptionForSearchValue?: ( | ||
searchValue: string, | ||
selectedOptions: any[] | ||
) => EuiComboBoxOptionOption<T>; | ||
) => EuiComboBoxOptionOption<T> | undefined; |
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.
why using undefined
here when ?
at the end of getSelectedOptionForSearchValue
already suggests that undefined
is acceptable
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.
If undefined
is not given. It creates a lint error. I guess, In this case, the props value
is undefined not the prop.
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.
In this case, the props value is undefined not the prop
Correct. The ?
allows for getSelectedOptionForSearchValue
itself to be undefined
.
(getSelectedOptionForSearchValue={undefined}
)
But adding | undefined
allows for the value returned by the getSelectedOptionForSearchValue
function to be undefined
(getSelectedOptionForSearchValue={(booleanParam) => booleanParam ? 'hello' : undefined}
)
jenkins test this |
Preview documentation changes for this PR: https://eui.elastic.co/pr_3501/ |
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. Thanks!
jenkins test this |
Preview documentation changes for this PR: https://eui.elastic.co/pr_3501/ |
Summary
Fixes #3458
getSelectedOptionForSearchValue
toEuiComboBoxOptionsList
options list as prop.Before:
After:
I think this was missed during the typescript conversion #2838
Checklist
- [ ] Checked in mobile- [ ] Checked in IE11 and Firefox- [ ] Props have proper autodocs- [ ] Added documentation examples- [ ] Checked for accessibility including keyboard-only and screenreader modes