Bugfix/localize date formatting in FIRE calculator (#6077)

* Localize date formatting

* Update changelog
pull/6078/head
David Requeno 5 months ago committed by GitHub
parent 48952c9bbd
commit 152cda19cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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`)
- Refreshed the cryptocurrencies list
### Fixed
- Localized date formatting across the _FIRE_ section
## 2.223.0 - 2025-12-14
### Added

@ -1,4 +1,3 @@
import { locale } from '@ghostfolio/common/config';
import { InfoResponse } from '@ghostfolio/common/interfaces';
import { filterGlobalPermissions } from '@ghostfolio/common/permissions';
import { GfNotificationModule } from '@ghostfolio/ui/notifications';
@ -91,7 +90,7 @@ import { environment } from './environments/environment';
},
{
provide: LOCALE_ID,
useValue: locale
useValue: $localize.locale
},
{
provide: MAT_DATE_FORMATS,

Loading…
Cancel
Save