Browse Source

Task/move tags to overview tab of account and holding detail dialogs (#7465)

* Move tags to overview tab

* Update changelog
pull/7436/head^2
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
17f0fe87b1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      CHANGELOG.md
  2. 9
      apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
  3. 21
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

7
CHANGELOG.md

@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Moved the tags to the overview tab of the account detail dialog (experimental)
- Moved the tags to the overview tab of the holding detail dialog
## 3.36.0 - 2026-07-29 ## 3.36.0 - 2026-07-29
### Added ### Added

9
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html

@ -112,6 +112,11 @@
>Platform</gf-value >Platform</gf-value
> >
</div> </div>
@if (user?.settings?.isExperimentalFeatures) {
<div class="col-12 mb-3">
<gf-tags-selector [readonly]="true" [tags]="tags" />
</div>
}
</div> </div>
</div> </div>
</mat-tab> </mat-tab>
@ -179,10 +184,6 @@
/> />
</mat-tab> </mat-tab>
</mat-tab-group> </mat-tab-group>
@if (user?.settings?.isExperimentalFeatures) {
<gf-tags-selector [readonly]="true" [tags]="tags" />
}
</div> </div>
</div> </div>

21
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

@ -331,6 +331,17 @@
>ISIN</gf-value >ISIN</gf-value
> >
</div> </div>
<div class="col-12 mb-3">
<form [formGroup]="holdingForm">
<gf-tags-selector
formControlName="tags"
[hasPermissionToCreateTag]="hasPermissionToCreateOwnTag"
[readonly]="!data.hasPermissionToUpdateActivity"
[tagsAvailable]="tagsAvailable"
[tagsReadOnly]="tagsOfAccounts"
/>
</form>
</div>
@if (dataProviderInfo) { @if (dataProviderInfo) {
<div class="col-md-12 mb-3 text-center"> <div class="col-md-12 mb-3 text-center">
@ -419,16 +430,6 @@
} }
</mat-tab-group> </mat-tab-group>
<form [formGroup]="holdingForm">
<gf-tags-selector
formControlName="tags"
[hasPermissionToCreateTag]="hasPermissionToCreateOwnTag"
[readonly]="!data.hasPermissionToUpdateActivity"
[tagsAvailable]="tagsAvailable"
[tagsReadOnly]="tagsOfAccounts"
/>
</form>
@if ( @if (
data.hasPermissionToAccessAdminControl || data.hasPermissionToAccessAdminControl ||
(dataSource?.data.length > 0 && (dataSource?.data.length > 0 &&

Loading…
Cancel
Save