Browse Source

Bugfix/hover styling of tags selector (#7359)

* Fix hover styling of tags selector

* Update changelog
pull/7368/head
KDxGautam 2 days ago
committed by GitHub
parent
commit
16394bb4f9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 10
      libs/ui/src/lib/tags-selector/tags-selector.component.html

4
CHANGELOG.md

@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the language localization for German (`de`)
- Upgraded `stripe` from version `22.2.3` to `22.3.2`
### Fixed
- Fixed an issue with the delete button in the tags selector component
## 3.28.0 - 2026-07-17
### Changed

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

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

Loading…
Cancel
Save