Fix privacy dropdown active state when dropdown is placed on top of it (#11495)

th-downstream
ThibG 5 years ago committed by Eugen Rochko
parent 05e9cd13eb
commit 9f15da6b15

@ -229,7 +229,7 @@ class PrivacyDropdown extends React.PureComponent {
return (
<div className={classNames('privacy-dropdown', placement, { active: open })} onKeyDown={this.handleKeyDown}>
<div className={classNames('privacy-dropdown__value', { active: this.options.indexOf(valueOption) === 0 })}>
<div className={classNames('privacy-dropdown__value', { active: this.options.indexOf(valueOption) === (placement === 'bottom' ? 0 : (this.options.length - 1)) })}>
<IconButton
className='privacy-dropdown__value-icon'
icon={valueOption.icon}

Loading…
Cancel
Save