I have a basic form that is being handled by Angular (classes and labels omitted for clarity):
<form>
<input type="text" />
<input type="number" />
</form>
On desktop view, both inputs allow me to press the Enter key to submit the form to Angular.
However, on mobile view (tested on Chrome Android 5.0), only the text input allows pushing the enter button to submit the form to Angular. When pressing the Enter button while in the number input, nothing happens.
Is this a known bug? Does a workaround exist for this issue?
EDIT:
The same behavior also occurs in case of only one input:
<form>
<input type="text" />
</form>
<form>
<input type="number" />
</form>