|
|
@ -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> |
|
|
|