We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1025dd commit 927412fCopy full SHA for 927412f
1 file changed
static/js/publisher/components/ComboBox/ComboBox.tsx
@@ -238,13 +238,15 @@ const ComboBox: FC<ComboBoxProps> = ({
238
</div>
239
<ul
240
className={`p-combobox__options-panel ${comboBoxState.isOpen ? "active" : ""}`}
241
- {...getMenuProps()}>
+ {...getMenuProps()}
242
+ >
243
{comboBoxState.isOpen &&
244
comboBoxState.filteredOptions.map((item) => (
245
<li
246
{...getItemProps({ item })}
247
key={item.value}
- className="p-combobox__option">
248
+ className="p-combobox__option"
249
250
{item.label}
251
</li>
252
))}
0 commit comments