From 8e3cdc6d2fb2aec41d103b6c469b6372af8d388c Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Tue, 17 Mar 2026 11:50:59 -0700 Subject: [PATCH] Bugfix/fix Storybook story of Symbol Autocomplete component (#6580) * Fix import * Update changelog --- CHANGELOG.md | 1 + libs/ui/src/lib/services/admin.service.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29165b943..364059f50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/libs/ui/src/lib/services/admin.service.ts b/libs/ui/src/lib/services/admin.service.ts index dec2a4dd5..094001c2f 100644 --- a/libs/ui/src/lib/services/admin.service.ts +++ b/libs/ui/src/lib/services/admin.service.ts @@ -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' })