Skip to content

Commit

Permalink
feat(HUDS): Agregar filtro de descargas pendientes
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-bravo authored and silviroa committed Dec 29, 2022
1 parent d62d4a1 commit 8dd3a49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<tr *ngFor="let pendiente of completed">
<td>
<plex-label size="md"
titulo="HUDS-{{pendiente.pacienteNombre?pendiente.pacienteNombre:pendiente.createdAt| date: 'dd/MM/yyyy HH:mm'}}">
titulo="{{pendiente.createdAt | date: 'dd/MM/yyyy HH:mm'}}-HUDS-{{pendiente.pacienteNombre?pendiente.pacienteNombre:''}}">
</plex-label>
</td>
<td>
Expand All @@ -27,7 +27,7 @@
<tr *ngFor="let pendiente of pending">
<td>
<plex-label size="md"
titulo="HUDS-{{pendiente.pacienteNombre?pendiente.pacienteNombre:pendiente.createdAt| date: 'dd/MM/yyyy HH:mm'}}">
titulo="{{pendiente.createdAt | date: 'dd/MM/yyyy HH:mm'}}-HUDS-{{pendiente.pacienteNombre?pendiente.pacienteNombre:''}}">
</plex-label>
</td>
<td>
Expand Down

0 comments on commit 8dd3a49

Please sign in to comment.