Commit 50a5f6bb31473ae661090234740b761472763b05
1 parent
aa1019516e
Exists in
develop
muestro 2 cifras solamente
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/modules/pedidos-salientes/pedidos-salientes.component.html
| ... | ... | @@ -13,7 +13,7 @@ |
| 13 | 13 | *ngFor="let pedido of pedidosPendientes; let i = index" |
| 14 | 14 | [hidden]="i == 0 || i > 4" |
| 15 | 15 | class="font-weight-bold mb-2 text-muted"> |
| 16 | - <h1 class="display-4">{{rellenar(pedido.id.toString().slice(0), 3)}}</h1> | |
| 16 | + <h1 class="display-4">{{rellenar(pedido.id.toString().slice(1), 2)}}</h1> | |
| 17 | 17 | </div> |
| 18 | 18 | </div> |
| 19 | 19 | </div> |
| ... | ... | @@ -22,7 +22,7 @@ |
| 22 | 22 | <h5 class="pt-3">LISTO PARA</h5> |
| 23 | 23 | <h3 class="font-weight-bold text-primary">retirar</h3> |
| 24 | 24 | <div *ngIf="pedidoFinalizado.length"> |
| 25 | - <h1 class="display-1 mt-4 text-primary mb-0">{{rellenar(pedidoFinalizado[0].id.toString().slice(0), 3)}}</h1> | |
| 25 | + <h1 class="display-1 mt-4 text-primary mb-0">{{rellenar(pedidoFinalizado[0].id.toString().slice(1), 2)}}</h1> | |
| 26 | 26 | <hr class="line mt-0"> |
| 27 | 27 | </div> |
| 28 | 28 | <h3 class="font-weight-bold text-info mt-4">¡Que lo disfrutes!</h3> |