Add console.log to Checkout component for debugging
This commit is contained in:
parent
ee09c1f710
commit
b5885517e9
1 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@ export class CheckoutComponent implements OnInit{
|
||||||
private sanitizer: DomSanitizer,
|
private sanitizer: DomSanitizer,
|
||||||
@Inject(MAT_DIALOG_DATA) public data: { totalZec: number, addr: string, orderId: string}
|
@Inject(MAT_DIALOG_DATA) public data: { totalZec: number, addr: string, orderId: string}
|
||||||
) {
|
) {
|
||||||
|
console.log("Entra a Constructor")
|
||||||
this.address = data.addr;
|
this.address = data.addr;
|
||||||
this.total = data.totalZec;
|
this.total = data.totalZec;
|
||||||
this.orderId = data.orderId;
|
this.orderId = data.orderId;
|
||||||
|
@ -42,7 +43,7 @@ export class CheckoutComponent implements OnInit{
|
||||||
logoHeight: 60,
|
logoHeight: 60,
|
||||||
correctLevel: QRCode.CorrectLevel.H
|
correctLevel: QRCode.CorrectLevel.H
|
||||||
});
|
});
|
||||||
// console.log(">>> " + qrcode);
|
console.log("mgOnInit - pasa");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue