Fix loading empty survey questions
This commit is contained in:
parent
1f24b5de73
commit
2302a615b9
|
@ -58,22 +58,24 @@
|
||||||
</div>
|
</div>
|
||||||
<ng-container *ngIf="ePregunta.tipo">
|
<ng-container *ngIf="ePregunta.tipo">
|
||||||
<ng-container *ngFor="let ePreguntaOpcion of ePreguntasOpciones; let j = index; trackBy: trackId">
|
<ng-container *ngFor="let ePreguntaOpcion of ePreguntasOpciones; let j = index; trackBy: trackId">
|
||||||
<ng-container *ngIf="ePregunta.id == ePreguntaOpcion[j].epreguntaCerrada.id">
|
<ng-container *ngIf="ePreguntaOpcion[j] !== undefined">
|
||||||
<div
|
<ng-container *ngIf="ePregunta.id == ePreguntaOpcion[j].epreguntaCerrada.id">
|
||||||
class="ds-survey--option ds-survey--option--base ds-survey--closed-option"
|
<div
|
||||||
*ngFor="let ePreguntaOpcion2 of ePreguntaOpcion; let k = index; trackBy: trackId"
|
class="ds-survey--option ds-survey--option--base ds-survey--closed-option"
|
||||||
[attr.data-id]="ePreguntaOpcion2.id"
|
*ngFor="let ePreguntaOpcion2 of ePreguntaOpcion; let k = index; trackBy: trackId"
|
||||||
>
|
[attr.data-id]="ePreguntaOpcion2.id"
|
||||||
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcion2.id }}" type="checkbox" disabled /> -->
|
>
|
||||||
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcion2.id }}">{{ ePreguntaOpcion2.nombre }}</label>
|
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcion2.id }}" type="checkbox" disabled /> -->
|
||||||
<fa-icon
|
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcion2.id }}">{{ ePreguntaOpcion2.nombre }}</label>
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
<fa-icon
|
||||||
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
*ngIf="encuesta!.estado === 'DRAFT'"
|
||||||
[icon]="faTimes"
|
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
||||||
(click)="deleteOption($event)"
|
[icon]="faTimes"
|
||||||
[attr.data-optionid]="ePreguntaOpcion2.id"
|
(click)="deleteOption($event)"
|
||||||
></fa-icon>
|
[attr.data-optionid]="ePreguntaOpcion2.id"
|
||||||
</div>
|
></fa-icon>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<div
|
<div
|
||||||
|
|
Loading…
Reference in New Issue