Skip to content

Commit

Permalink
Release fixes #5 (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
al-petrushin authored Mar 8, 2023
1 parent c086230 commit f5c00cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/shared/Editor/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ class EditorStore {
}
};

handleBlur = () => {
handleBlur = ({ event }: { event: FocusEvent }) => {
if (event.relatedTarget) {
return;
}

this.onBlur?.();
};

Expand Down

0 comments on commit f5c00cb

Please sign in to comment.