Browse Source

Restore scroll position (#15)

pull/18/head
Thomas 4 years ago
committed by GitHub
parent
commit
3558f52b84
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 3
      apps/client/src/app/app-routing.module.ts

4
CHANGELOG.md

@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Optimized the data management for historical data
- Optimized the exchange rate service
### Fixed
- Restored the scroll position when opening a new page
## 0.85.0 - 16.04.2021
### Changed

3
apps/client/src/app/app-routing.module.ts

@ -81,7 +81,8 @@ const routes: Routes = [
{
preloadingStrategy: ModulePreloadService,
// enableTracing: true // <-- debugging purposes only
relativeLinkResolution: 'legacy'
relativeLinkResolution: 'legacy',
scrollPositionRestoration: 'enabled'
}
)
],

Loading…
Cancel
Save