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
Hi Anthony,
I am getting an error “Cannot read property 'isFirstChange' of undefined
at MatPasswordStrengthComponent.ngOnChanges (angular-material-extensions-password-strength.js:454)” at page load . I debug it and find that “changes.password” is undefined . Please look it into image .
My suggestion is please replace code “if ((changes.externalError && changes.externalError.firstChange) || changes.password.isFirstChange()) {
return;
}” by “if ((changes.externalError && changes.externalError.firstChange) || changes.password && changes.password.isFirstChange()) {
return;
}” to fixed this bug.
Bug Report or Feature Request (mark with an
x
)OS and Version?
Versions
Repro steps
The log given by the failure
Desired functionality
Mention any other details that might be useful
The text was updated successfully, but these errors were encountered: