mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
On hovering the Link widget, a tooltip should be displayed fixed (#4609)
* fixed lint issues * update lint issues * remove all the previous changes in the unrelated files * removed event propogation on mouse over event Co-authored-by: manishkushare <kushare.manish9@gmail.com>
This commit is contained in:
parent
89c6663265
commit
222eca68fe
1 changed files with 1 additions and 2 deletions
|
|
@ -28,8 +28,7 @@ export const Link = ({ height, properties, styles, fireEvent, registerAction })
|
|||
event.stopPropagation();
|
||||
fireEvent('onClick');
|
||||
}}
|
||||
onMouseOver={(event) => {
|
||||
event.stopPropagation();
|
||||
onMouseOver={() => {
|
||||
fireEvent('onHover');
|
||||
}}
|
||||
style={{ color: textColor }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue