Browse Source

Fix tag removal and update changelog

pull/7359/head
kdxgautam 4 days ago
committed by Thomas Kaul
parent
commit
44225cdfd7
  1. 1
      CHANGELOG.md
  2. 8
      libs/ui/src/lib/tags-selector/tags-selector.component.html

1
CHANGELOG.md

@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed an issue where the dividends, the interest and the liabilities of asset profiles without market data have been valued at zero in the portfolio calculation - Fixed an issue where the dividends, the interest and the liabilities of asset profiles without market data have been valued at zero in the portfolio calculation
- Fixed an issue where an error has been reported for asset profiles without market data which do not hold any units - Fixed an issue where an error has been reported for asset profiles without market data which do not hold any units
- Fixed an issue with removing a linked account from a buy, sell or dividend activity - Fixed an issue with removing a linked account from a buy, sell or dividend activity
- Fixed the hover styling of the tags selector component
## 3.27.0 - 2026-07-15 ## 3.27.0 - 2026-07-15

8
libs/ui/src/lib/tags-selector/tags-selector.component.html

@ -34,11 +34,9 @@
@for (tag of tagsSelected(); track tag.id) { @for (tag of tagsSelected(); track tag.id) {
<mat-chip-row [removable]="true" (removed)="onRemoveTag(tag)"> <mat-chip-row [removable]="true" (removed)="onRemoveTag(tag)">
{{ tag.name }} {{ tag.name }}
<ion-icon <button matChipRemove type="button">
matChipRemove <ion-icon name="close-outline" />
matChipTrailingIcon </button>
name="close-outline"
/>
</mat-chip-row> </mat-chip-row>
} }
<input <input

Loading…
Cancel
Save