From 702dce9fc4154e181c32bdf66fcbee29305c8eb5 Mon Sep 17 00:00:00 2001 From: Mariam Saeed Date: Wed, 15 Oct 2025 10:51:09 +0300 Subject: [PATCH] fixes --- CHANGELOG.md | 2 +- apps/client/src/app/app-routing.module.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff3641dc..fff28224a 100644 --- a/CHANGELOG.md +++ b/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 - Optimized the get quotes functionality by utilizing the asset profile resolutions in the _Financial Modeling Prep_ service - Extracted the footer to a component -- Fixed scroll position not resetting on page change. ### 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 diff --git a/apps/client/src/app/app-routing.module.ts b/apps/client/src/app/app-routing.module.ts index e9b5a0b2b..0ceee3725 100644 --- a/apps/client/src/app/app-routing.module.ts +++ b/apps/client/src/app/app-routing.module.ts @@ -154,10 +154,10 @@ const routes: Routes = [ routes, // Preload all lazy loaded modules with the attribute preload === true { - scrollPositionRestoration: 'top', anchorScrolling: 'enabled', - preloadingStrategy: ModulePreloadService - // enableTracing: true // <-- debugging purposes only + // enableTracing: true, // <-- debugging purposes only + preloadingStrategy: ModulePreloadService, + scrollPositionRestoration: 'top' } ) ],