Commit 2bb2c4fb9b6037705d3ddc954c4bac844f29b8a0
1 parent
7f8d72ac14
Exists in
master
and in
1 other branch
Agregado checked cuando el sinonimo es padre.
Showing
1 changed file
with
4 additions
and
3 deletions
Show diff stats
src/app/components/popover-sinonimos/popover-sinonimos.component.html
... | ... | @@ -23,13 +23,14 @@ |
23 | 23 | <div class="custom-control custom-radio"> |
24 | 24 | <input |
25 | 25 | type="radio" |
26 | - id="{{sinonimo.CodArt}}" | |
26 | + [id]="sinonimo.id" | |
27 | 27 | name="sinonimoOpciones" |
28 | 28 | class="custom-control-input" |
29 | - (click)="setSinonimo(sinonimo)"> | |
29 | + (click)="setSinonimo(sinonimo)" | |
30 | + [checked]="sinonimo.esPadre"> | |
30 | 31 | <label |
31 | 32 | class="font-weight-normal custom-control-label" |
32 | - for="{{sinonimo.CodArt}}"> | |
33 | + [for]="sinonimo.id"> | |
33 | 34 | {{sinonimo.DetArt}} |
34 | 35 | </label> |
35 | 36 | </div> |