Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 2x | <div *ngIf="selected" class="row">
<div class="col-md-10">
<div *ngFor="let select of selected" class="filter-navigation-badges">
<button
type="button"
class="btn btn-link btn-link-action btn-link-with-icon"
(click)="apply(select.searchParameter)"
>
{{ select.filterName }}: {{ select.displayName
}}<fa-icon [icon]="['fas', 'times']" class="form-control-feedback" />
</button>
</div>
</div>
<div *ngIf="selected.length" class="col-md-2 text-end">
<button type="button" class="btn btn-link btn-link-action" (click)="clear()">
{{ 'product.remove_all_product_filters.text' | translate }}
</button>
</div>
</div>
|