Browse Source
Merge branch 'main' into feature/upgrade-cheerio-to-version-1.0.0
pull/4060/head
Thomas Kaul
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/services/configuration/configuration.service.ts
-
libs/ui/src/lib/symbol-autocomplete/symbol-autocomplete.component.html
|
@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the style of the symbol search component |
|
|
- Extended the users table in the admin control panel |
|
|
- Extended the users table in the admin control panel |
|
|
|
|
|
- Increased the default request timeout (`REQUEST_TIMEOUT`) |
|
|
- Upgraded `cheerio` from version `1.0.0-rc.12` to `1.0.0` |
|
|
- Upgraded `cheerio` from version `1.0.0-rc.12` to `1.0.0` |
|
|
|
|
|
|
|
|
## 2.124.1 - 2024-11-25 |
|
|
## 2.124.1 - 2024-11-25 |
|
|
|
@ -70,7 +70,7 @@ export class ConfigurationService { |
|
|
REDIS_HOST: str({ default: 'localhost' }), |
|
|
REDIS_HOST: str({ default: 'localhost' }), |
|
|
REDIS_PASSWORD: str({ default: '' }), |
|
|
REDIS_PASSWORD: str({ default: '' }), |
|
|
REDIS_PORT: port({ default: 6379 }), |
|
|
REDIS_PORT: port({ default: 6379 }), |
|
|
REQUEST_TIMEOUT: num({ default: 2000 }), |
|
|
REQUEST_TIMEOUT: num({ default: ms('3 seconds') }), |
|
|
ROOT_URL: url({ default: DEFAULT_ROOT_URL }), |
|
|
ROOT_URL: url({ default: DEFAULT_ROOT_URL }), |
|
|
STRIPE_PUBLIC_KEY: str({ default: '' }), |
|
|
STRIPE_PUBLIC_KEY: str({ default: '' }), |
|
|
STRIPE_SECRET_KEY: str({ default: '' }), |
|
|
STRIPE_SECRET_KEY: str({ default: '' }), |
|
|
|
@ -19,7 +19,7 @@ |
|
|
[value]="lookupItem" |
|
|
[value]="lookupItem" |
|
|
> |
|
|
> |
|
|
<span class="align-items-center d-flex line-height-1" |
|
|
<span class="align-items-center d-flex line-height-1" |
|
|
><b>{{ lookupItem.name }}</b> |
|
|
><span>{{ lookupItem.name }}</span> |
|
|
@if (lookupItem.dataProviderInfo.isPremium) { |
|
|
@if (lookupItem.dataProviderInfo.isPremium) { |
|
|
<gf-premium-indicator class="ml-1" [enableLink]="false" /> |
|
|
<gf-premium-indicator class="ml-1" [enableLink]="false" /> |
|
|
} |
|
|
} |
|
|