We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7888d commit fa6eeb0Copy full SHA for fa6eeb0
src/aria/ui-patterns/combobox/combobox.ts
@@ -339,14 +339,10 @@ export class ComboboxPattern<T extends ListItem<V>, V> {
339
const inputEl = this.inputs.inputEl();
340
const item = this.inputs.popupControls()?.getSelectedItem();
341
342
- console.log('Highlighting item called with:', item?.searchTerm());
343
-
344
if (!inputEl || !item) {
345
return;
346
}
347
348
- console.log('Highlighting item:', item.searchTerm());
349
350
const isHighlightable = item
351
.searchTerm()
352
.toLowerCase()
0 commit comments