Browse Source

fix(lib): resolve type errors

pull/6358/head
KenTandrian 1 month ago
parent
commit
6adbc45bed
  1. 4
      libs/ui/src/lib/activities-filter/activities-filter.component.html

4
libs/ui/src/lib/activities-filter/activities-filter.component.html

@ -10,7 +10,7 @@
[removable]="true" [removable]="true"
(removed)="onRemoveFilter(filter)" (removed)="onRemoveFilter(filter)"
> >
{{ filter.label | gfSymbol }} {{ filter.label ?? '' | gfSymbol }}
<button matChipRemove> <button matChipRemove>
<ion-icon name="close-outline" /> <ion-icon name="close-outline" />
</button> </button>
@ -35,7 +35,7 @@
<mat-optgroup [label]="filterGroup.name"> <mat-optgroup [label]="filterGroup.name">
@for (filter of filterGroup.filters; track filter) { @for (filter of filterGroup.filters; track filter) {
<mat-option [value]="filter.id"> <mat-option [value]="filter.id">
{{ filter.label | gfSymbol }} {{ filter.label ?? '' | gfSymbol }}
</mat-option> </mat-option>
} }
</mat-optgroup> </mat-optgroup>

Loading…
Cancel
Save