Skip to content

Commit

Permalink
Addressed #6642 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDervishi committed Jul 25, 2023
1 parent aac7885 commit 16207ba
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/assets/javascripts/DropDownMenu/SingleSelectDropDown.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ export class SingleSelectDropDown extends React.Component {
<ul data-testid={"options"}>
{options.map(option => {
return (
<li
key={option}
style={{alignSelf: "stretch"}}
onClick={e => this.onSelect(e, option)}
>
<li key={option} onClick={e => this.onSelect(e, option)}>
<span>
{this.props.valueToDisplayName != null
? this.props.valueToDisplayName[option]
Expand Down

0 comments on commit 16207ba

Please sign in to comment.