Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedwag committed Nov 7, 2023
1 parent 7dca140 commit ca75620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/ui/text_box/ui.text_editor.label.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ class TextEditorLabel {
}
});
eventsEngine.on(this._$labelSpan, hoverStartEventName, (e) => {
this._props.onHoverHandler();
this._props.onHoverHandler(e);
});
eventsEngine.on(this._$labelSpan, activeEventName, (e) => {
this._props.onActiveHandler();
this._props.onActiveHandler(e);
});
}
}
Expand Down

0 comments on commit ca75620

Please sign in to comment.