Fix loading empty survey questions
This commit is contained in:
parent
1f24b5de73
commit
2302a615b9
|
@ -58,6 +58,7 @@
|
||||||
</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="ePreguntaOpcion[j] !== undefined">
|
||||||
<ng-container *ngIf="ePregunta.id == ePreguntaOpcion[j].epreguntaCerrada.id">
|
<ng-container *ngIf="ePregunta.id == ePreguntaOpcion[j].epreguntaCerrada.id">
|
||||||
<div
|
<div
|
||||||
class="ds-survey--option ds-survey--option--base ds-survey--closed-option"
|
class="ds-survey--option ds-survey--option--base ds-survey--closed-option"
|
||||||
|
@ -76,6 +77,7 @@
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
</ng-container>
|
||||||
<div
|
<div
|
||||||
class="ds-survey--option ds-survey--option--add ds-survey--closed-option"
|
class="ds-survey--option ds-survey--option--add ds-survey--closed-option"
|
||||||
(click)="resetForm($event)"
|
(click)="resetForm($event)"
|
||||||
|
|
Loading…
Reference in New Issue