Browse Source

refactor: address PR feedback

pull/5742/head
HarjobandeepSingh 3 weeks ago
parent
commit
2f9d7996d8
  1. 7
      CHANGELOG.md
  2. 3
      apps/client/src/app/pages/blog/blog-page.component.ts
  3. 2
      apps/client/src/app/pages/blog/blog-page.routes.ts

7
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`)

3
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;

2
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],

Loading…
Cancel
Save