diff --git a/src/components/Button.js b/src/components/Button.js index 3f3c646eb1c..17e1d7e007c 100644 --- a/src/components/Button.js +++ b/src/components/Button.js @@ -159,6 +159,7 @@ class Button extends Component { if (!this.props.isFocused || this.props.isDisabled || this.props.isLoading || (e && e.target.nodeName === 'TEXTAREA')) { return; } + e.preventDefault(); this.props.onPress(); }, shortcutConfig.descriptionKey, shortcutConfig.modifiers, true, false, this.props.enterKeyEventListenerPriority, false); }