Skip to content

Commit

Permalink
Fix primefaces#5512: Dropdown add tabindex for Tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Dec 4, 2023
1 parent 6e8730c commit 0b208e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/lib/dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,8 @@ export const Dropdown = React.memo(
const inputProps = mergeProps(
{
ref: inputRef,
className: cx('input', { label })
className: cx('input', { label }),
tabIndex: '-1'
},
ptm('input')
);
Expand Down

0 comments on commit 0b208e7

Please sign in to comment.