Browse Source
Task/move support for tags in account to general availability (#7415)
* Move support for tags in account from experimental to general availability
* Update changelog
pull/7423/head
Thomas Kaul
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
9 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
- Included cash in the performance calculation of the portfolio |
|
|
- Included cash in the performance calculation of the portfolio |
|
|
|
|
|
- Moved the support for tags in the account from experimental to general availability |
|
|
- Upgraded `countup.js` from version `2.10.0` to `2.10.1` |
|
|
- Upgraded `countup.js` from version `2.10.0` to `2.10.1` |
|
|
- Upgraded `dotenv` from version `17.2.3` to `17.4.2` |
|
|
- Upgraded `dotenv` from version `17.2.3` to `17.4.2` |
|
|
- Upgraded `dotenv-expand` from version `12.0.3` to `13.0.0` |
|
|
- Upgraded `dotenv-expand` from version `12.0.3` to `13.0.0` |
|
|
|
|
|
@ -85,7 +85,6 @@ |
|
|
></textarea> |
|
|
></textarea> |
|
|
</mat-form-field> |
|
|
</mat-form-field> |
|
|
</div> |
|
|
</div> |
|
|
@if (data.user?.settings?.isExperimentalFeatures) { |
|
|
|
|
|
<div class="mb-3"> |
|
|
<div class="mb-3"> |
|
|
<gf-tags-selector |
|
|
<gf-tags-selector |
|
|
formControlName="tags" |
|
|
formControlName="tags" |
|
|
@ -93,7 +92,6 @@ |
|
|
[tagsAvailable]="tagsAvailable" |
|
|
[tagsAvailable]="tagsAvailable" |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
} |
|
|
|
|
|
<div class="mb-3 px-2"> |
|
|
<div class="mb-3 px-2"> |
|
|
<mat-checkbox color="primary" formControlName="isExcluded" i18n |
|
|
<mat-checkbox color="primary" formControlName="isExcluded" i18n |
|
|
>Exclude from Analysis</mat-checkbox |
|
|
>Exclude from Analysis</mat-checkbox |
|
|
|