We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2476f38 commit 3c9c510Copy full SHA for 3c9c510
1 file changed
‎src-docs/src/views/selectable/selectable_sizing.tsx‎
@@ -234,10 +234,12 @@ const SelectableInputPopover = () => {
234
onFocus: () => setIsOpen(true),
235
onBlur: () => setIsOpen(false),
236
}}
237
- isPreFiltered={!isSearching} // Shows the full list when not actively typing to search
238
listProps={{
239
css: { '.euiSelectableList__list': { maxBlockSize: 200 } },
+ // @ts-ignore - Override search highlighting when a selection is chosen
240
+ searchValue: isSearching ? inputValue : '',
241
242
+ isPreFiltered={!isSearching} // Shows the full list when not actively typing to search
243
>
244
{(list, search) => (
245
<EuiInputPopover
0 commit comments