diff --git a/app/assets/javascripts/discourse/app/components/tap-tile.js b/app/assets/javascripts/discourse/app/components/tap-tile.js index 18a01cfd60b..d86497c3bb9 100644 --- a/app/assets/javascripts/discourse/app/components/tap-tile.js +++ b/app/assets/javascripts/discourse/app/components/tap-tile.js @@ -21,6 +21,7 @@ export default Component.extend({ keyDown(e) { if (e.key === "Enter") { + e.stopPropagation(); this.onChange(this.tileId); } },