Commit 9e8daa6379be1f6f8b22e49c3b5e863014ae52ca
1 parent
ed70cd18e7
Exists in
develop
elimino restriccion de no mostrar comanda con index = 0
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/modules/pedidos-salientes/pedidos-salientes.component.html
... | ... | @@ -16,7 +16,7 @@ |
16 | 16 | <h5>TU PEDIDO</h5> |
17 | 17 | <div |
18 | 18 | *ngFor="let pedido of pedidosPendientes; let i = index" |
19 | - [hidden]="i == 0 || i > 4" | |
19 | + [hidden]="i > 4" | |
20 | 20 | class="font-weight-bold mb-2 text-muted"> |
21 | 21 | <h1 class="display-4">{{rellenar(pedido.id.toString().slice(1), 2)}}</h1> |
22 | 22 | </div> |