angularngx-bootstrap

when I press enter while filling form, bs modal opens. How to prevent it?


I am using form in angular. When I click enter in any input field. It opens bsmodal.


Solution

  • You can stop the enter keydown directly in the form like this:

    <form (keydown.enter)="$event.preventDefault()"></form>