Browse Source
Bugfix/no entries in holdings table of public page (#5501)
* Fix holdings table
* Update changelog
pull/5018/merge
Germán Martín
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/public/public-page.html
|
|
@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Refactored the rules component to standalone |
|
|
|
- Refactored the subscription interstitial dialog component to standalone |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the holdings table on the public page |
|
|
|
|
|
|
|
## 2.197.0 - 2025-09-07 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -198,11 +198,11 @@ |
|
|
|
<div class="row"> |
|
|
|
<div class="col-lg"> |
|
|
|
<gf-holdings-table |
|
|
|
[data]="holdings" |
|
|
|
[deviceType]="deviceType" |
|
|
|
[hasPermissionToOpenDetails]="false" |
|
|
|
[hasPermissionToShowQuantities]="false" |
|
|
|
[hasPermissionToShowValues]="false" |
|
|
|
[holdings]="holdings" |
|
|
|
[pageSize]="7" |
|
|
|
/> |
|
|
|
</div> |
|
|
|