-
-
Notifications
You must be signed in to change notification settings - Fork 119
Parameter not read from route #1580
Copy link
Copy link
Closed as not planned
Labels
investigateThis issue require further investigation before closing.This issue require further investigation before closing.needs designMore design is needed before this issue should result in a feature being implemented.More design is needed before this issue should result in a feature being implemented.
Milestone
Metadata
Metadata
Assignees
Labels
investigateThis issue require further investigation before closing.This issue require further investigation before closing.needs designMore design is needed before this issue should result in a feature being implemented.More design is needed before this issue should result in a feature being implemented.
Describe the bug
I have a page that I'm testing with some routes:
There are also some query string parameters:
I have set a URL in navigation manager:
When the component is rendered I see the
MeterNameparameter has a value, but theApplicationNameis blank.Now, I can fix that by manually setting the parameter value when calling
RenderComponent:But part of the code I'm testing changes the current page with
NavigateTo, and I needApplicationNameparameter to pick up its new value when navigation happens.Why isn't
ApplicationNameparameter value getting its value from the@page "/metrics/resource/{ApplicationName}"page route?