Commit dd7dc79cc980632631c524b5a04441973f31c397
1 parent
879aa1eee7
Exists in
master
and in
1 other branch
Arreglo de vista.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/app/components/comanda/comanda.component.html
... | ... | @@ -22,9 +22,9 @@ |
22 | 22 | 'bg-success swing-out-top-bck': comanda.estado === 3 |
23 | 23 | }"> |
24 | 24 | <div class="card-body p-2"> |
25 | - <p class="h5 card-title text-center mb-1">{{comanda.id.toString().slice(comanda.id.toString().length - 2)}}.</p> | |
25 | + <p class="h1 card-title text-center mb-1">{{comanda.id.toString().slice(comanda.id.toString().length - 2)}}</p> | |
26 | 26 | <!-- TODO: Implementar moment --> |
27 | - <p class="h5 card-title text-center mb-1">{{comanda.fechafinelaboracion | date: 'dd-MM-yyyy HH:mm' : '+0000'}}</p> | |
27 | + <p class="card-title text-center mb-1">{{comanda.fechafinelaboracion | date: 'dd-MM-yyyy HH:mm' : '+0000'}}</p> | |
28 | 28 | <p |
29 | 29 | *ngFor="let detalle of comanda.detalles" |
30 | 30 | [ngClass]=" |
... | ... | @@ -53,7 +53,7 @@ |
53 | 53 | *ngIf="comanda.estado === 2" |
54 | 54 | class="btn btn-block btn-light btn-sm shadow-sm p-0" |
55 | 55 | (click)="updateComanda(comanda, 1, 'Pagado')"> |
56 | - <span class="pr-1 h6"><small>En espera</small></span> | |
56 | + <span class="pr-2 h6"><small>Deshacer</small></span> | |
57 | 57 | <i class="fa fa-undo text-warning" aria-hidden="true"></i> |
58 | 58 | </button> |
59 | 59 | </div> |