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 an error in the source code for the FormInput component. The functions 'focus' and 'select' both reference a member that is 'undefined' (input). The following code changes resolve the issue.
There is an error in the source code for the FormInput component. The functions 'focus' and 'select' both reference a member that is 'undefined' (input). The following code changes resolve the issue.
file: components\FormInput.js
function: focus
old:
focus () {
this.input.focus();
},
new:
focus () {
this.target.focus();
},
function: select
old:
select () {
this.input.select();
},
new:
select () {
this.target.select();
},
The text was updated successfully, but these errors were encountered: