Browse Source
Bugfix/reset scroll position on page change (#5753)
* Reset scroll position on page change
* Update changelog
main
Mariam Saeed
15 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/app-routing.module.ts
|
|
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Respected the include indices flag in the search functionality of the _Financial Modeling Prep_ service |
|
|
|
- Fixed an issue where the scroll position was not restored when changing pages |
|
|
|
|
|
|
|
## 2.208.0 - 2025-10-11 |
|
|
|
|
|
|
|
|
|
@ -155,8 +155,9 @@ const routes: Routes = [ |
|
|
|
// Preload all lazy loaded modules with the attribute preload === true
|
|
|
|
{ |
|
|
|
anchorScrolling: 'enabled', |
|
|
|
preloadingStrategy: ModulePreloadService |
|
|
|
// enableTracing: true // <-- debugging purposes only
|
|
|
|
// enableTracing: true, // <-- debugging purposes only
|
|
|
|
preloadingStrategy: ModulePreloadService, |
|
|
|
scrollPositionRestoration: 'top' |
|
|
|
} |
|
|
|
) |
|
|
|
], |
|
|
|