Skip to content

Commit

Permalink
fix / Heading :
Browse files Browse the repository at this point in the history
event.stopPropagationを削除
関連 : WordPress/gutenberg#33632
  • Loading branch information
shimotmk committed Jan 14, 2022
1 parent 1ace0aa commit ead1262
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/blocks/heading/heading-level-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default function HeadingLevelDropdown({ selectedLevel, onChange }) {
const openOnArrowDown = (event) => {
if (!isOpen && event.keyCode === DOWN) {
event.preventDefault();
event.stopPropagation();
onToggle();
}
};
Expand Down

0 comments on commit ead1262

Please sign in to comment.