I have a TableComponent with an Angular Material table that contains some links to other components.
When I am on the second page of the table (Image above) and I click on the link, routerLink
redirects to DetailComponent. Once I am redirected, if I press the back button or I execute location.back()
I go back to TableComponent, but the table is located on the first page, instead of the one I was before.
Is there a way to keep the previous state of the table, after redirections between components?
Thanks in advance!