Browse Source
Feature/improve labels of assistant (#4091)
* Improve labels
* Update changelog
pull/4099/head^2
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
3 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/assistant/assistant.html
|
|
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the labels of the assistant |
|
|
|
- Extracted the historical market data editor to a reusable component |
|
|
|
|
|
|
|
## 2.125.0 - 2024-11-30 |
|
|
|
|
|
@ -104,7 +104,7 @@ |
|
|
|
<div class="p-3"> |
|
|
|
<div class="mb-3"> |
|
|
|
<mat-form-field appearance="outline" class="w-100 without-hint"> |
|
|
|
<mat-label i18n>Accounts</mat-label> |
|
|
|
<mat-label i18n>Account</mat-label> |
|
|
|
<mat-select formControlName="account"> |
|
|
|
<mat-option [value]="null" /> |
|
|
|
@for (account of accounts; track account.id) { |
|
|
@ -152,7 +152,7 @@ |
|
|
|
</div> |
|
|
|
<div class="mb-3"> |
|
|
|
<mat-form-field appearance="outline" class="w-100 without-hint"> |
|
|
|
<mat-label i18n>Tags</mat-label> |
|
|
|
<mat-label i18n>Tag</mat-label> |
|
|
|
<mat-select formControlName="tag"> |
|
|
|
<mat-option [value]="null" /> |
|
|
|
@for (tag of tags; track tag.id) { |
|
|
@ -163,7 +163,7 @@ |
|
|
|
</div> |
|
|
|
<div class="mb-3"> |
|
|
|
<mat-form-field appearance="outline" class="w-100 without-hint"> |
|
|
|
<mat-label i18n>Asset Classes</mat-label> |
|
|
|
<mat-label i18n>Asset Class</mat-label> |
|
|
|
<mat-select formControlName="assetClass"> |
|
|
|
<mat-option [value]="null" /> |
|
|
|
@for (assetClass of assetClasses; track assetClass.id) { |
|
|
|