diff --git a/packages/button/src/LionButton.js b/packages/button/src/LionButton.js index 69b4f7de5..74070d5de 100644 --- a/packages/button/src/LionButton.js +++ b/packages/button/src/LionButton.js @@ -235,6 +235,9 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement)) __keydownHandler(e) { if (this.active || !isKeyboardClickEvent(e)) { + if (isSpaceKeyboardClickEvent(e)) { + e.preventDefault(); + } return; }