-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ComponentProperties no longer in ngOnChanges #188
Labels
Comments
Thanks for the report! |
Thanks a lot @swhammack ! |
🎉 This issue has been resolved in version 10.4.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
@timdeschryver thanks for the quick fix! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After updating to 10.4.0 we saw a bunch of tests that were suddenly failing. After a bit of digging I realized each component implemented
OnChanges
and in thengOnChanges()
function we were looking for an@Input
property to be in the changes object. It seems with the latest changes any@Input
property that is set incomponentProperties
is never in the changes object inngOnChanges
.Quick example:
The text was updated successfully, but these errors were encountered: