We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db6e79f commit 835842bCopy full SHA for 835842b
lib/common/components/OptionButton.js
@@ -16,10 +16,10 @@ export default class OptionButton extends Component {
16
}
17
18
render () {
19
- const {children, tooltip} = this.props
+ const {children, tooltip, ...other} = this.props
20
const button = (
21
<Button
22
- {...this.props}
+ {...other}
23
href='#' // required for button width to appear correctly
24
onClick={this._onClick}>
25
{children}
0 commit comments