Browse Source
Bugfix/delete button in activities filter component (#7451)
* Fix delete button
* Update changelog
pull/6845/merge
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-filter/activities-filter.component.html
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the time in market of the portfolio summary to be empty if there is no activity |
|
|
- Fixed the time in market of the portfolio summary to be empty if there is no activity |
|
|
|
|
|
- Fixed an issue with the delete button in the activities filter component |
|
|
|
|
|
|
|
|
## 3.35.0 - 2026-07-27 |
|
|
## 3.35.0 - 2026-07-27 |
|
|
|
|
|
|
|
|
|
|
|
@ -4,12 +4,11 @@ |
|
|
@for (filter of selectedFilters; track filter) { |
|
|
@for (filter of selectedFilters; track filter) { |
|
|
<mat-chip-row |
|
|
<mat-chip-row |
|
|
class="mx-1 my-0 px-2 py-0" |
|
|
class="mx-1 my-0 px-2 py-0" |
|
|
matChipRemove |
|
|
|
|
|
[removable]="true" |
|
|
[removable]="true" |
|
|
(removed)="onRemoveFilter(filter)" |
|
|
(removed)="onRemoveFilter(filter)" |
|
|
> |
|
|
> |
|
|
{{ filter.label }} |
|
|
{{ filter.label }} |
|
|
<button matChipRemove> |
|
|
<button matChipRemove type="button"> |
|
|
<ion-icon name="close-outline" /> |
|
|
<ion-icon name="close-outline" /> |
|
|
</button> |
|
|
</button> |
|
|
</mat-chip-row> |
|
|
</mat-chip-row> |
|
|
|