Skip to content

Commit

Permalink
fix(js): correct item class name
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour committed Nov 4, 2020
1 parent 8c53d2d commit 475e88f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/autocomplete-js/src/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export function autocomplete<TItem>({
const li = document.createElement('li');
setProperties(li, {
...autocomplete.getItemProps({ item, source }),
class: concatClassNames(['aa-Item', classNames.Item]),
class: concatClassNames(['aa-Item', classNames.item]),
});
renderTemplate(source.templates.item({ root: li, item, state }), li);

Expand Down

0 comments on commit 475e88f

Please sign in to comment.