Skip to content

Commit c63f88b

Browse files
committed
reverting tooltip fix for action buttons as it regressed some of the buttons styles
1 parent 9a469fd commit c63f88b

File tree

1 file changed

+10
-12
lines changed
  • packages/selenium-ide/src/neo/components/ActionButtons/ActionButton

1 file changed

+10
-12
lines changed

packages/selenium-ide/src/neo/components/ActionButtons/ActionButton/index.jsx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,19 @@ import './style.css'
2222

2323
export default class ActionButton extends React.Component {
2424
render() {
25-
const { 'data-tip': dataTip, ...props } = { ...this.props }
25+
const props = { ...this.props }
2626

2727
delete props.isActive
2828
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>
29+
<button
30+
type="button"
31+
{...props}
32+
className={classNames(
33+
'btn-action',
34+
{ active: this.props.isActive },
35+
this.props.className
36+
)}
37+
/>
4038
)
4139
}
4240

0 commit comments

Comments
 (0)