Linting fixes
This commit is contained in:
parent
e53fbb4a09
commit
183f993b01
|
@ -20,10 +20,11 @@ const iconStyle = {
|
|||
};
|
||||
|
||||
class AdvancedOptionToggle extends React.PureComponent {
|
||||
static PropTypes = {
|
||||
|
||||
static propTypes = {
|
||||
onChange: PropTypes.func.isRequired,
|
||||
active: PropTypes.bool.isRequired,
|
||||
key: PropTypes.string.isRequired,
|
||||
name: PropTypes.string.isRequired,
|
||||
shortText: PropTypes.string.isRequired,
|
||||
longText: PropTypes.string.isRequired,
|
||||
}
|
||||
|
@ -35,7 +36,7 @@ class AdvancedOptionToggle extends React.PureComponent {
|
|||
render() {
|
||||
const { active, shortText, longText } = this.props;
|
||||
return (
|
||||
<div role='button' className='advanced-options-dropdown__option' onClick={this.onToggle}>
|
||||
<div role='button' tabIndex='0' className='advanced-options-dropdown__option' onClick={this.onToggle}>
|
||||
<div className='advanced-options-dropdown__option__toggle'>
|
||||
<Toggle checked={active} onChange={this.onToggle} />
|
||||
</div>
|
||||
|
@ -46,6 +47,7 @@ class AdvancedOptionToggle extends React.PureComponent {
|
|||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@injectIntl
|
||||
|
|
Loading…
Reference in New Issue