All files / src/app/shared/components/filter/filter-navigation-badges filter-navigation-badges.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

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 162x                              
<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" (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-right">
    <button type="button" class="btn btn-link btn-link-action" (click)="clear()">
      {{ 'product.remove_all_product_filters.text' | translate }}
    </button>
  </div>
</div>