diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e7c7ad98..816ea6d5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed + +- Refactored the blog page component to standalone + ## 2.208.0 - 2025-10-11 ### Added @@ -16,7 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed the _As seen in_ section on the landing page to an animated carousel - Refactored `transactionCount` to `activitiesCount` in the endpoint `GET api/v1/portfolio/holding/:dataSource/:symbol` - Refactored various components to use self-closing tags -- Refactored the blog page component to standalone - Removed the deprecated endpoint `GET api/v1/portfolio/position/:dataSource/:symbol` - Removed the deprecated endpoint `PUT api/v1/portfolio/position/:dataSource/:symbol/tags` - Improved the language localization for German (`de`) diff --git a/apps/client/src/app/pages/blog/blog-page.component.ts b/apps/client/src/app/pages/blog/blog-page.component.ts index 62b6e01fa..9977e6df4 100644 --- a/apps/client/src/app/pages/blog/blog-page.component.ts +++ b/apps/client/src/app/pages/blog/blog-page.component.ts @@ -15,8 +15,7 @@ import { Subject } from 'rxjs'; schemas: [CUSTOM_ELEMENTS_SCHEMA], selector: 'gf-blog-page', styleUrls: ['./blog-page.scss'], - templateUrl: './blog-page.html', - standalone: true + templateUrl: './blog-page.html' }) export class GfBlogPageComponent implements OnDestroy { public hasPermissionForSubscription: boolean; diff --git a/apps/client/src/app/pages/blog/blog-page.routes.ts b/apps/client/src/app/pages/blog/blog-page.routes.ts index b52f14699..268346831 100644 --- a/apps/client/src/app/pages/blog/blog-page.routes.ts +++ b/apps/client/src/app/pages/blog/blog-page.routes.ts @@ -118,7 +118,7 @@ export const routes: Routes = [ import( './2023/03/1000-stars-on-github/1000-stars-on-github-page.component' ).then((c) => c.ThousandStarsOnGitHubPageComponent), - title: "Ghostfolio reaches 1'000 Stars on GitHub" + title: 'Ghostfolio reaches 1\'000 Stars on GitHub' }, { canActivate: [AuthGuard],