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
If a state has explicitly defined mappings, we currently only apply those mappings if we find a matching @Input() or inputs: [] metadata. Because decorators are now being stripped for AoT compile, there is no longer any way to be certain that the property exists on the component or not.
For now, we should always set the property on the component (if an explicit binding is made), even if the metadata is not found.
related to #36
If a state has explicitly defined mappings, we currently only apply those mappings if we find a matching
@Input()
orinputs: []
metadata. Because decorators are now being stripped for AoT compile, there is no longer any way to be certain that the property exists on the component or not.For now, we should always set the property on the component (if an explicit binding is made), even if the metadata is not found.
cc @aitboudad
The text was updated successfully, but these errors were encountered: