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
parent
commit
9ec4866873
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 3
      libs/ui/src/lib/activities-filter/activities-filter.component.html

1
CHANGELOG.md

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- 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
libs/ui/src/lib/activities-filter/activities-filter.component.html

@ -4,12 +4,11 @@
@for (filter of selectedFilters; track filter) {
<mat-chip-row
class="mx-1 my-0 px-2 py-0"
matChipRemove
[removable]="true"
(removed)="onRemoveFilter(filter)"
>
{{ filter.label }}
<button matChipRemove>
<button matChipRemove type="button">
<ion-icon name="close-outline" />
</button>
</mat-chip-row>

Loading…
Cancel
Save