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) {
<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" />
<ion-icon
matChipRemove
matChipTrailingIcon
name="close-outline"
/>
</mat-chip-row>
}
<input

Loading…
Cancel
Save