All files / src/app/extensions/tacton/pages/configure/tacton-image-text-buttons tacton-image-text-buttons.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 16 17 18 19 20 21 22 23 242x                                              
<div class="d-flex flex-wrap align-items-end pb-2">
  <div *ngFor="let opt of parameter.domain?.elements" class="mr-3">
    <div class="border" [ngClass]="{ 'border-primary': opt.selected }">
      <img
        [src]="getImageUrl(opt.properties.tc_component_picture) | async"
        (click)="change(opt.name)"
        (keydown.enter)="change(opt.name)"
        tabindex="0"
        [attr.alt]="opt.properties.tc_component_picture"
      />
    </div>
    <label>
      <input
        type="radio"
        [name]="parameter.name"
        [value]="opt.name"
        [checked]="opt.selected"
        (change)="change($event.target)"
      />
      {{ opt.description }}
    </label>
  </div>
</div>