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
According to the API docs, NOWAIT should not wait for promise and should not unwrap it. This is not the case as you can see in this plunker.
data is already resolved in onEnter hook where a resolved value is injected and not a promise. The same with the bound value in a template - it doesn't render until the data is resolved and promise unwrapped.
It contradicts the API docs stating that for resolve policy async: NOWAIT "The promise will not be unwrapped. The promise itself will be provided when the resolve is injected or bound elsewhere."
According to the API docs, NOWAIT should not wait for promise and should not unwrap it. This is not the case as you can see in this plunker.
data
is already resolved inonEnter
hook where a resolved value is injected and not a promise. The same with the bound value in a template - it doesn't render until thedata
is resolved and promise unwrapped.It contradicts the API docs stating that for resolve policy async: NOWAIT "The promise will not be unwrapped. The promise itself will be provided when the resolve is injected or bound elsewhere."
Related to #2691
The text was updated successfully, but these errors were encountered: