Skip to content

Commit

Permalink
[core] Polish event name (#9336)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Jun 14, 2023
1 parent a2e168f commit 00bc903
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ export const useGridFocus = (
);

const handleBlur = React.useCallback<GridEventListener<'columnHeaderBlur'>>(
(_, ev) => {
if (ev.relatedTarget?.className.includes(gridClasses.columnHeader)) {
(_, event) => {
if (event.relatedTarget?.className.includes(gridClasses.columnHeader)) {
return;
}
logger.debug(`Clearing focus`);
Expand Down

0 comments on commit 00bc903

Please sign in to comment.