Browse Source
Bugfix/fix Storybook story of Symbol Autocomplete component (#6580)
* Fix import
* Update changelog
pull/6599/head
Matt Van Horn
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/services/admin.service.ts
|
|
|
@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue with the detection of the thousand separator for the `de-CH` locale |
|
|
|
- Fixed an issue in the _Storybook_ stories of the symbol autocomplete component caused by a circular dependency |
|
|
|
|
|
|
|
## 2.249.0 - 2026-03-10 |
|
|
|
|
|
|
|
|
|
|
|
@ -22,7 +22,6 @@ import { |
|
|
|
} from '@ghostfolio/common/interfaces'; |
|
|
|
import { DateRange } from '@ghostfolio/common/types'; |
|
|
|
import { GF_ENVIRONMENT } from '@ghostfolio/ui/environment'; |
|
|
|
import { DataService } from '@ghostfolio/ui/services'; |
|
|
|
|
|
|
|
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http'; |
|
|
|
import { Injectable, inject } from '@angular/core'; |
|
|
|
@ -31,6 +30,8 @@ import { DataSource, MarketData, Platform } from '@prisma/client'; |
|
|
|
import { JobStatus } from 'bull'; |
|
|
|
import { isNumber } from 'lodash'; |
|
|
|
|
|
|
|
import { DataService } from './data.service'; |
|
|
|
|
|
|
|
@Injectable({ |
|
|
|
providedIn: 'root' |
|
|
|
}) |
|
|
|
|