Browse Source

fixes

pull/5753/head
Mariam Saeed 3 weeks ago
parent
commit
702dce9fc4
  1. 2
      CHANGELOG.md
  2. 6
      apps/client/src/app/app-routing.module.ts

2
CHANGELOG.md

@ -18,11 +18,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the currency validation in the search functionality of the data provider service - Improved the currency validation in the search functionality of the data provider service
- Optimized the get quotes functionality by utilizing the asset profile resolutions in the _Financial Modeling Prep_ service - Optimized the get quotes functionality by utilizing the asset profile resolutions in the _Financial Modeling Prep_ service
- Extracted the footer to a component - Extracted the footer to a component
- Fixed scroll position not resetting on page change.
### Fixed ### Fixed
- Respected the include indices flag in the search functionality of the _Financial Modeling Prep_ service - 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 ## 2.208.0 - 2025-10-11

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

@ -154,10 +154,10 @@ const routes: Routes = [
routes, routes,
// Preload all lazy loaded modules with the attribute preload === true // Preload all lazy loaded modules with the attribute preload === true
{ {
scrollPositionRestoration: 'top',
anchorScrolling: 'enabled', anchorScrolling: 'enabled',
preloadingStrategy: ModulePreloadService // enableTracing: true, // <-- debugging purposes only
// enableTracing: true // <-- debugging purposes only preloadingStrategy: ModulePreloadService,
scrollPositionRestoration: 'top'
} }
) )
], ],

Loading…
Cancel
Save