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
materialize-stepper.js:591 Uncaught TypeError: Cannot read property 'length' of null at materialize-stepper.js:591 at MStepper._init (materialize-stepper.js:53) at new MStepper (materialize-stepper.js:699)
Browser: Google Chrome 74.0.
I fixed it by changing line 591 from: } else if (form.length) {
to else if (form !== undefined && form !== null && form.length) {
The text was updated successfully, but these errors were encountered:
materialize-stepper.js:591 Uncaught TypeError: Cannot read property 'length' of null at materialize-stepper.js:591 at MStepper._init (materialize-stepper.js:53) at new MStepper (materialize-stepper.js:699)
Browser: Google Chrome 74.0.
I fixed it by changing line 591 from:
} else if (form.length) {
to
else if (form !== undefined && form !== null && form.length) {
The text was updated successfully, but these errors were encountered: