You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation of AutocompleteWidget uses EuiComboBox, which renders its list options as html button components. As children of these components the implementation inserts BreadcrumbPresentation components, of which parts are renders as html button components, which is against the html spec.
Also, this will cause hydration problems in frameworks like next.js
The problem:
The implementation of AutocompleteWidget uses
EuiComboBox
, which renders its list options as html button components. As children of these components the implementation insertsBreadcrumbPresentation
components, of which parts are renders as html button components, which is against the html spec.Also, this will cause hydration problems in frameworks like next.js
The solution:
Provide and use a
BreadcrumbPresentation
component that uses only non-interactive components.The text was updated successfully, but these errors were encountered: