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 9a469fd commit c63f88bCopy full SHA for c63f88b
packages/selenium-ide/src/neo/components/ActionButtons/ActionButton/index.jsx
@@ -22,21 +22,19 @@ import './style.css'
22
23
export default class ActionButton extends React.Component {
24
render() {
25
- const { 'data-tip': dataTip, ...props } = { ...this.props }
+ const props = { ...this.props }
26
27
delete props.isActive
28
return (
29
- <span data-tip={dataTip}>
30
- <button
31
- type="button"
32
- {...props}
33
- className={classNames(
34
- 'btn-action',
35
- { active: this.props.isActive },
36
- this.props.className
37
- )}
38
- />
39
- </span>
+ <button
+ type="button"
+ {...props}
+ className={classNames(
+ 'btn-action',
+ { active: this.props.isActive },
+ this.props.className
+ )}
+ />
40
)
41
}
42
0 commit comments