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
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
At he moment the error reads as follows:
Error: NG0950: Input is required but no value is available yet. Find more at https://angular.dev/errors/NG0950
error properties: Object({ code: -950 })
at ...
Proposed solution
Just add the input name or its alias to the error message, for example:
Error: NG0950: Input ("requiredInputName") is required but no value is available yet. Find more at https://angular.dev/errors/NG0950
error properties: Object({ code: -950 })
at ...
The text was updated successfully, but these errors were encountered:
I've looked at the code seems that the function for the input does not know the name of the input ( correct me if I'm wrong ), there is a debugName however that is used for the devtools extension. Would adding this debugName in the error message solve this issue?
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
At he moment the error reads as follows:
Proposed solution
Just add the input name or its alias to the error message, for example:
The text was updated successfully, but these errors were encountered: