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 24 | 2x | <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> |