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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
ngModel doesn't watch $viewValue objects deeply and also does not make copies of those objects. This means that changes to the properties of those objects does not trigger ngModel changes.
So if your input directive provides objects (e.g. Date objects) to $setViewValue then it should make a copy before sending it into $setViewValue.
ngModel doesn't watch $viewValue objects deeply and also does not make copies of those objects. This means that changes to the properties of those objects does not trigger ngModel changes.
So if your input directive provides objects (e.g. Date objects) to $setViewValue then it should make a copy before sending it into $setViewValue.
See #7965
The text was updated successfully, but these errors were encountered: