Browse Source

Merge branch 'main' into task/upgrade-helmet-to-version-8.2.0

pull/7300/head
Thomas Kaul 2 days ago
committed by GitHub
parent
commit
1cde4a4840
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      CHANGELOG.md
  2. 5
      libs/ui/src/lib/assistant/assistant-list-item/assistant-list-item.html
  3. 5
      libs/ui/src/lib/symbol-autocomplete/symbol-autocomplete.component.html

5
CHANGELOG.md

@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgraded `helmet` from version `7.0.0` to `8.2.0` - Upgraded `helmet` from version `7.0.0` to `8.2.0`
### Fixed
- Fixed the display of assets without a currency in the search results of the assistant
- Fixed the display of assets without a currency in the symbol autocomplete component
## 3.24.0 - 2026-07-11 ## 3.24.0 - 2026-07-11
### Added ### Added

5
libs/ui/src/lib/assistant/assistant-list-item/assistant-list-item.html

@ -8,7 +8,10 @@
@if (item && isAsset(item)) { @if (item && isAsset(item)) {
<br /> <br />
<small class="text-muted" <small class="text-muted"
>{{ item?.symbol ?? '' | gfSymbol }} · {{ item?.currency }} >{{ item?.symbol ?? '' | gfSymbol }}
@if (item.currency) {
· {{ item.currency }}
}
@if (item?.assetSubClassString) { @if (item?.assetSubClassString) {
· {{ item.assetSubClassString }} · {{ item.assetSubClassString }}
} }

5
libs/ui/src/lib/symbol-autocomplete/symbol-autocomplete.component.html

@ -25,7 +25,10 @@
} }
</span> </span>
<small class="text-muted" <small class="text-muted"
>{{ lookupItem.symbol | gfSymbol }} · {{ lookupItem.currency }} >{{ lookupItem.symbol | gfSymbol }}
@if (lookupItem.currency) {
· {{ lookupItem.currency }}
}
@if (lookupItem.assetSubClass) { @if (lookupItem.assetSubClass) {
· {{ lookupItem.assetSubClassString }} · {{ lookupItem.assetSubClassString }}
} }

Loading…
Cancel
Save