Skip to content

Commit

Permalink
fix 15963: Add condition for border line display
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Mar 19, 2023
1 parent a00e18d commit 706aa70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/OptionRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ class OptionRow extends Component {
|| this.props.option.text !== nextProps.option.text
|| this.props.option.alternateText !== nextProps.option.alternateText
|| this.props.option.descriptiveText !== nextProps.option.descriptiveText
|| this.props.option.brickRoadIndicator !== nextProps.option.brickRoadIndicator;
|| this.props.option.brickRoadIndicator !== nextProps.option.brickRoadIndicator
|| this.props.shouldHaveOptionSeparator !== nextProps.shouldHaveOptionSeparator;
}

componentDidUpdate(prevProps) {
Expand Down

0 comments on commit 706aa70

Please sign in to comment.