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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
6 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/tags-selector/tags-selector.component.html
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -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 |
|
|
|
|