I have console.log correctly showing the route with customer?
however, with the [RouterLink]
it is converting it from ? to %3F in which my route no longer works
template html
<a [routerLink]="[items.Url]">
Route file
{ path: 'customer', component: CustomerComponent, pathMatch: 'full'},
Can I correct this somehow with the template .. routerLink (some pipe filter?) or can or does this have to be fixed in my route module ts file?
HOW?
I need
http://server/customer?
but i'm getting
http://server/customer%3F