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 I write something like this placeholder="{{variable_from_scope}}" placeholder doesn't display. Bug can be repeted in this example http://embed.plnkr.co/LTj8vm5NgYeOKpv22MDL/ If you add variable to controller and try to show the value in placeholder you will see empty field.
The text was updated successfully, but these errors were encountered:
It's because the expression is interpolated with an internal scope which typically does not have the required data. Quick patch follows, but the proper solution would probably be to use the parent scope to interpolate these fields.
And another note: the placeholder gets interpolated just once with this solution, so it does not change dynamically.
If I write something like this placeholder="{{variable_from_scope}}" placeholder doesn't display. Bug can be repeted in this example http://embed.plnkr.co/LTj8vm5NgYeOKpv22MDL/ If you add variable to controller and try to show the value in placeholder you will see empty field.
The text was updated successfully, but these errors were encountered: