Fix list validation bug

This commit is contained in:
Pablo Bonilla 2021-07-25 14:37:51 -06:00
parent 07cd3484f5
commit 0509b735ce
No known key found for this signature in database
GPG Key ID: 46877262B8DE47E2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@
<p class="ds-title text-center">Encuesta finalizada</p>
<p class="ds-subtitle">No puede modificar la encuesta debido a que esta ya ha concluido.</p>
</ng-container>
<ng-container *ngIf="ePreguntas && ePreguntas.length === 0">
<ng-container *ngIf="encuesta!.estado === 'DRAFT' && ePreguntas && ePreguntas.length === 0">
<p class="ds-title text-center">Encuesta vacía</p>
<p class="ds-subtitle">Inicie creando preguntas y opciones para su encuesta.</p>
</ng-container>