From 73be7f3969295b9d3ff7d147921c570f37fdab77 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:01:46 +0100 Subject: [PATCH] Feature/improve labels of assistant (#4091) * Improve labels * Update changelog --- CHANGELOG.md | 1 + libs/ui/src/lib/assistant/assistant.html | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e7a08306..1ba5bf3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/libs/ui/src/lib/assistant/assistant.html b/libs/ui/src/lib/assistant/assistant.html index 18c2145a3..228c9cc56 100644 --- a/libs/ui/src/lib/assistant/assistant.html +++ b/libs/ui/src/lib/assistant/assistant.html @@ -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) {