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 redirect route may contain query parameters, which are then later stripped by the router during the redirect because of this issue.
To make this work, we either need an update to the router here so that it retains the query parameters (preferred), or an update to aurelia-open-id-connect so that it assigns the query parameters to the instruction in addition to the redirect - this seems wrong.
I'm submitting a bug report
1.5.0
Please tell us about your environment:
Operating System:
Windows 10
Node Version:
14.6.0
6.14.8
webpack 4
Browser:
all
Language:
all
Current behavior:
The following route configuration does not propagate the query string to the redirected route:
Expected/desired behavior:
The route "does-not-work" should have the behavior of "does-work".
The issue is related to this code:
router/src/navigation-plan.ts
Lines 81 to 84 in 9ba6ef3
I believe the behavior should be more like
instruction.queryString || redirectInstruction.queryString
Easier configuration of redirect route
The text was updated successfully, but these errors were encountered: