Hello to all, ensuring everyone's safety 😀
Currently, I am utilizing Angular 9 and I have a URL that incorporates query parameters, and they are operating seamlessly as anticipated.
Here is My URL:
Nevertheless, when I reload my page using the browser's reload button, the URL is appending some %3, how can I rectify this?
Upon Reloading, the URL Becomes:
My Routing Configuration:
const routes: Routes = [
{
path: '',
component: PlaybookEntryComponent,
children: [
{
path: 'columnView',
component: ColumnviewComponent
}
],
},
];