Skip to content

Commit

Permalink
Refactor #1022
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Oct 14, 2019
1 parent 000ced3 commit 8975694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export class Dropdown extends Component {

return (
<div className="p-hidden-accessible p-dropdown-hidden-select">
<select ref={(el) => this.nativeSelect = el} required={this.props.required} tabIndex="-1" aria-hidden="true">
<select ref={(el) => this.nativeSelect = el} required={this.props.required} name={this.props.name} tabIndex="-1" aria-hidden="true">
{placeHolderOption}
{option}
</select>
Expand Down

0 comments on commit 8975694

Please sign in to comment.