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
There is a kinda critical usability bug in two files where MDBInput is used: src/client/pages/index.js src/client/pages/items/[slug].js
When mouse-clicking the label of an input field (email, phone), the name input field will become active, due to the label's non-unique field reference.
There is a kinda critical usability bug in two files where
MDBInput
is used:src/client/pages/index.js
src/client/pages/items/[slug].js
When mouse-clicking the label of an input field (email, phone), the name input field will become active, due to the label's non-unique field reference.
Please change the
id
attribute of your MDBInput fields to something unique, e.g.form-email
,form-phone
, etc.The text was updated successfully, but these errors were encountered: