Browse Source

Fix hover styling of tags selector

pull/7359/head
kdxgautam 3 days ago
committed by Thomas Kaul
parent
commit
bfa12c45a6
  1. 12
      libs/ui/src/lib/tags-selector/tags-selector.component.html

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

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

Loading…
Cancel
Save