Explorar el Código

Production build bug fixes

master
kj1352 hace 5 años
padre
commit
86a805261a
Se han modificado 3 ficheros con 4 adiciones y 6 borrados
  1. +0
    -5
      .firebaserc
  2. +2
    -0
      src/app/cart/cart.page.ts
  3. +2
    -1
      src/app/orders/orders.component.ts

+ 0
- 5
.firebaserc Ver fichero

@@ -1,5 +0,0 @@
{
"projects": {
"default": "mall-app-2019"
}
}

+ 2
- 0
src/app/cart/cart.page.ts Ver fichero

@@ -38,6 +38,8 @@ export class CartPage implements OnInit {
showInstantMenu: boolean = false;
temp_outlet_details: any;
selectedTempMallId: string;
show_promocodes: boolean = false;
selected_promocode: string = '';

constructor(
private location: Location,


+ 2
- 1
src/app/orders/orders.component.ts Ver fichero

@@ -12,6 +12,7 @@ export class OrdersComponent implements OnInit {
selected_order: any;
selected_rating: number = 0;
userInfo: any;
show_rate_modal: boolean = false;

constructor(
private orderService: OrderService,
@@ -24,7 +25,7 @@ export class OrdersComponent implements OnInit {
this.userOrders = resp.reverse();
}, (err) => {
console.log(err);
});
});
}

getFormattedDate(date, format) {


Cargando…
Cancelar
Guardar