Fix home surveys
This commit is contained in:
parent
40776b11a7
commit
04cb3f943c
|
@ -135,20 +135,22 @@
|
|||
></fa-icon>
|
||||
</div>
|
||||
<div class="entity-body--row m-2">
|
||||
<button class="ds-btn btn-card"><fa-icon [icon]="faPollH"></fa-icon> Completar encuesta</button>
|
||||
<button class="ds-btn btn-card" routerLink="pagina-principal" routerLinkActive="router-link-active">
|
||||
<fa-icon [icon]="faPollH"></fa-icon> Ver más encuestas
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<!-- <div class="row">
|
||||
<div class="col">
|
||||
<a routerLink="#">
|
||||
<button class="ds-btn ds-btn--primary fw-500 ms-lg-4 mb-4">Ver todas las encuestas</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -94,6 +94,13 @@ export class HomeComponent implements OnInit, OnDestroy {
|
|||
(res: HttpResponse<IEncuesta[]>) => {
|
||||
this.isLoading = false;
|
||||
const tmpEncuestas = res.body ?? [];
|
||||
|
||||
// Fix calificacion
|
||||
tmpEncuestas.forEach(encuesta => {
|
||||
const _calificacion = encuesta.calificacion;
|
||||
encuesta.calificacion = Number(_calificacion?.toString().split('.')[0]);
|
||||
});
|
||||
|
||||
this.encuestas = tmpEncuestas.filter(e => e.estado === 'ACTIVE' && e.acceso === 'PUBLIC');
|
||||
this.encuestasMostradas = this.encuestas.reverse().slice(0, 3);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue