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
The Angular team introduced signals but more importantly, signal inputs with Version 18.
The problem with the new signals is that they act as functions, which UI-Router doesn't seem to handle.
Hi @Lubjan this issue will be resolved by PR #995, it still a work in progress, but I hope I will finish it by the beginning of next year. With luck it will be merged soon after that!
Meanwhile you can use a setter and set the value of a signal
The Angular team introduced signals but more importantly, signal inputs with Version 18.
The problem with the new signals is that they act as functions, which UI-Router doesn't seem to handle.
Example
Expected behavior
someInput
resolvablesomeInput.set(value)
someInput()
,someInput.set(...)
,someInput.update(...)
, etc...)Actual behavior
someInput()
in the component would throw[...] is not a function
when navigated to)The text was updated successfully, but these errors were encountered: