rtexelm commented on code in PR #27593:
URL: https://github.com/apache/superset/pull/27593#discussion_r1540569257
##########
superset-frontend/src/dashboard/components/menu/HoverMenu.tsx:
##########
@@ -70,6 +72,18 @@ export default class HoverMenu extends
React.PureComponent<HoverMenuProps> {
children: null,
};
+ handleMouseEnter = () => {
+ if (this.props.onHover) {
+ this.props.onHover(true);
+ }
+ };
+
+ handleMouseLeave = () => {
+ if (this.props.onHover) {
+ this.props.onHover(false);
Review Comment:
Thank you for this suggestion by the way, details like this really help me
get better!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]