Is there a way to automatically include query parameters when navigating back to the previous page using the browser's default back button?
For instance, when calling a customer-hierarchy component view, you can add query parameters like this:
<a [routerLink]="['/customer-hierarchy']" [queryParams]="{filterBy: currentActiveFilter}">Details</a>
But how can we achieve the same result for the previous page triggered by clicking the default back button in the browser?