Skip to content

Commit

Permalink
Fix Dropdown component prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
estacioneto committed Jun 16, 2021
1 parent 9dcf3bd commit 6374e64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion react/components/Dropdown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ class Dropdown extends Component {
</option>
)}
{options.map(option => (
<option disabled={option.disabled} key={option.value} value={option.value}>
<option
disabled={option.disabled}
key={option.value}
value={option.value}>
{option.label}
</option>
))}
Expand Down

0 comments on commit 6374e64

Please sign in to comment.