Hello all,
Did someone see the following issue:
While I try redirecting to a page with query parameters, it is not working. The redirect is working, but the query parameters are not working, stays same since the page was refreshed.
The same happens with Navigation.
Here is a code for the app to reproduce the issue:
$Navigation = @(
New-UDListItem -Label "Home" -Href "/?Id=123"
)
New-UDApp -Title 'PowerShell Universal' -Content {
New-UDTypography -Text 'Home' -Id 'homeText'
Show-UDToast $Query.id
New-UDButton -Text Test -OnClick {
Invoke-UDRedirect -Url "/home?id=$(Get-Random -Minimum 1 -Maximum 21)"
}
} -Navigation $Navigation -HideUserName
Product: PowerShell Universal
Version: 4.2.21