Skip to content

Commit

Permalink
Update SteedosObject.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
baozhoutao committed Dec 31, 2024
1 parent 277f0d2 commit a306015
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,19 @@ class Container<T> extends React.Component<
}
};

@autobind
// @autobind
handleClick(e: React.MouseEvent<any>) {
const {dispatchEvent, data} = this.props;
dispatchEvent(e, data);
}

@autobind
// @autobind
handleMouseEnter(e: React.MouseEvent<any>) {
const {dispatchEvent, data} = this.props;
dispatchEvent(e, data);
}

@autobind
// @autobind
handleMouseLeave(e: React.MouseEvent<any>) {
const {dispatchEvent, data} = this.props;
dispatchEvent(e, data);
Expand Down

0 comments on commit a306015

Please sign in to comment.