Browse Source

Feature/move holdings table into holdings section on public page (#5508)

* Move holdings table into holdings section on public page

* Update changelog
pull/5518/head
Germán Martín 1 week ago
committed by GitHub
parent
commit
3b5fa88ca8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 20
      apps/client/src/app/pages/public/public-page.html

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Moved the holdings table into the holdings section on the public page
- Refactored the login with access token dialog component to standalone - Refactored the login with access token dialog component to standalone
## 2.198.0 - 2025-09-11 ## 2.198.0 - 2025-09-11

20
apps/client/src/app/pages/public/public-page.html

@ -77,6 +77,14 @@
[keys]="['symbol']" [keys]="['symbol']"
[showLabels]="deviceType !== 'mobile'" [showLabels]="deviceType !== 'mobile'"
/> />
<gf-holdings-table
[deviceType]="deviceType"
[hasPermissionToOpenDetails]="false"
[hasPermissionToShowQuantities]="false"
[hasPermissionToShowValues]="false"
[holdings]="holdings"
[pageSize]="7"
/>
</mat-card-content> </mat-card-content>
</mat-card> </mat-card>
</div> </div>
@ -195,18 +203,6 @@
</div> </div>
</div> </div>
} }
<div class="row">
<div class="col-lg">
<gf-holdings-table
[deviceType]="deviceType"
[hasPermissionToOpenDetails]="false"
[hasPermissionToShowQuantities]="false"
[hasPermissionToShowValues]="false"
[holdings]="holdings"
[pageSize]="7"
/>
</div>
</div>
<div class="row my-5"> <div class="row my-5">
<div class="col-md-10 offset-md-1"> <div class="col-md-10 offset-md-1">
<h2 class="h4 mb-1 text-center" i18n> <h2 class="h4 mb-1 text-center" i18n>

Loading…
Cancel
Save