Skip to content

Commit

Permalink
fix(grado): corrige error de matricula inexistente (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCele authored Sep 7, 2023
1 parent 8ae21ec commit db9f79e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
</div>
</div>
<plex-detail>
<plex-badge type="success">Ultima matrícula
<plex-badge *ngIf='!formacion.matriculacion?.length' type="info">No Matriculado</plex-badge>
<plex-badge *ngIf='formacion.matriculacion?.length' type="success">Última matrícula
<strong>{{ formacion.matriculacion[formacion.matriculacion?.length - 1].matriculaNumero }}</strong></plex-badge>
<plex-icon name="medico" left size="xl" type="info"></plex-icon>
<plex-label titulo="Título" subtitulo="{{profesional.documento}}"></plex-label>
Expand Down

0 comments on commit db9f79e

Please sign in to comment.