Browse Source
Bugfix/localize date formatting in FIRE calculator (#6077)
* Localize date formatting
* Update changelog
pull/6078/head
David Requeno
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/main.ts
|
|
@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Removed the deprecated _Angular CLI_ decorator (`decorate-angular-cli.js`) |
|
|
- Removed the deprecated _Angular CLI_ decorator (`decorate-angular-cli.js`) |
|
|
- Refreshed the cryptocurrencies list |
|
|
- Refreshed the cryptocurrencies list |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Localized date formatting across the _FIRE_ section |
|
|
|
|
|
|
|
|
## 2.223.0 - 2025-12-14 |
|
|
## 2.223.0 - 2025-12-14 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
@ -1,4 +1,3 @@ |
|
|
import { locale } from '@ghostfolio/common/config'; |
|
|
|
|
|
import { InfoResponse } from '@ghostfolio/common/interfaces'; |
|
|
import { InfoResponse } from '@ghostfolio/common/interfaces'; |
|
|
import { filterGlobalPermissions } from '@ghostfolio/common/permissions'; |
|
|
import { filterGlobalPermissions } from '@ghostfolio/common/permissions'; |
|
|
import { GfNotificationModule } from '@ghostfolio/ui/notifications'; |
|
|
import { GfNotificationModule } from '@ghostfolio/ui/notifications'; |
|
|
@ -91,7 +90,7 @@ import { environment } from './environments/environment'; |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
provide: LOCALE_ID, |
|
|
provide: LOCALE_ID, |
|
|
useValue: locale |
|
|
useValue: $localize.locale |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
provide: MAT_DATE_FORMATS, |
|
|
provide: MAT_DATE_FORMATS, |
|
|
|