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 ui-sref ever fails to generate an href, it gives up on ever trying again. This is a problem for a ui-sref which targets a state that has any required params, if the bound values are ever null.
If ui-sref ever fails to generate an href, it gives up on ever trying again. This is a problem for a ui-sref which targets a state that has any required params, if the bound values are ever null.
Due to this code: https://github.com/angular-ui/ui-router/blob/master/src/stateDirectives.js#L107-L118
I think we should probably just get rid of the "!nav" check alltogether.
To see this fail, change this line https://github.com/angular-ui/ui-router/blob/master/test/stateDirectivesSpec.js#L15 from an optional string parameter to a required int parameter.
that is, change
url: "/:id"
tourl: "/{id:int}"
The text was updated successfully, but these errors were encountered: