How can I prevent the enter key from submitting the form in angular?
Is there a way to catch the 13 key and disable it or set the form as invalid unless submitting f
Check this:
if a form has 2+ input fields and no buttons or input[type=submit] then hitting enter doesn't trigger submit
Thus if your form has 2+ input fields, you could use something like Sumbit to prevent key-trigger of enter key in those input fields.
Sumbit