Feature/move treemap chart from experimental to general availability (#4034)

* Move treemap chart to general availability

* Update changelog
pull/4047/head
Thomas Kaul 2 months ago committed by GitHub
parent 95cb6dcb8d
commit 8c0de59414
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Moved the chart of the holdings tab on the home page from experimental to general availability
- Extended the assistant by a holding selector - Extended the assistant by a holding selector
- Separated the _FIRE_ / _X-ray_ page - Separated the _FIRE_ / _X-ray_ page
- Improved the language localization for Italian (`it`) - Improved the language localization for Italian (`it`)

@ -7,23 +7,21 @@
<div class="row"> <div class="row">
<div class="col-lg"> <div class="col-lg">
<div class="d-flex"> <div class="d-flex">
@if (user?.settings?.isExperimentalFeatures) { <div class="d-flex">
<div class="d-flex"> <div class="d-none d-lg-block">
<div class="d-none d-lg-block"> <mat-button-toggle-group
<mat-button-toggle-group [formControl]="viewModeFormControl"
[formControl]="viewModeFormControl" [hideSingleSelectionIndicator]="true"
[hideSingleSelectionIndicator]="true" >
> <mat-button-toggle i18n-title title="Table" value="TABLE">
<mat-button-toggle i18n-title title="Table" value="TABLE"> <ion-icon name="reorder-four-outline" />
<ion-icon name="reorder-four-outline" /> </mat-button-toggle>
</mat-button-toggle> <mat-button-toggle i18n-title title="Chart" value="CHART">
<mat-button-toggle i18n-title title="Chart" value="CHART"> <ion-icon name="grid-outline" />
<ion-icon name="grid-outline" /> </mat-button-toggle>
</mat-button-toggle> </mat-button-toggle-group>
</mat-button-toggle-group>
</div>
</div> </div>
} </div>
<div class="align-items-center d-flex flex-grow-1 justify-content-end"> <div class="align-items-center d-flex flex-grow-1 justify-content-end">
<gf-toggle <gf-toggle
class="d-none d-lg-block" class="d-none d-lg-block"

Loading…
Cancel
Save