You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vaadin-number-field uses a <input type="number">
internally and there's a known limitation for it on Firefox where it allows user to type any character on it, differently as seen in Chrome which only numbers a few other characters (.,,,e) are allowed.
Consider implementing what has been done for other numerical fields and add a way to prevent non-valid characters to be inserted.
Expected outcome
Field ignores non-numeric values being typed by user.