remove debuggers
This commit is contained in:
parent
72719bcad9
commit
1766f657fe
|
@ -19,7 +19,6 @@ export class EncuestaFinalizarDialogComponent implements OnInit {
|
|||
ngOnInit(): void {}
|
||||
|
||||
confirmFinalizar(encuesta: IEncuesta): void {
|
||||
debugger;
|
||||
const now = dayjs();
|
||||
|
||||
encuesta.estado = EstadoEncuesta.FINISHED;
|
||||
|
|
|
@ -107,7 +107,6 @@ export class EncuestaPublishDialogComponent implements OnInit {
|
|||
|
||||
fechaFinalizacionIsInvalid(fechaFinalizar: dayjs.Dayjs, fechaPublicacion: dayjs.Dayjs): boolean {
|
||||
let numberDays: number;
|
||||
debugger;
|
||||
|
||||
numberDays = fechaFinalizar?.diff(fechaPublicacion, 'days');
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@ export class FacturaService {
|
|||
constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {}
|
||||
|
||||
create(factura: IFactura): Observable<EntityResponseType> {
|
||||
debugger;
|
||||
const copy = this.convertDateFromClient(factura);
|
||||
return this.http
|
||||
.post<IFactura>(this.resourceUrl, copy, { observe: 'response' })
|
||||
|
|
|
@ -106,7 +106,6 @@ export class PaypalDialogComponent implements OnInit {
|
|||
});
|
||||
},
|
||||
onClientAuthorization: data => {
|
||||
debugger;
|
||||
console.log('onClientAuthorization - you should probably inform your server about completed transaction at this point', data);
|
||||
this.updateUser();
|
||||
this.sendReceipt();
|
||||
|
@ -119,7 +118,6 @@ export class PaypalDialogComponent implements OnInit {
|
|||
}
|
||||
|
||||
getUser(): void {
|
||||
debugger;
|
||||
// Get jhi_user and usuario_extra information
|
||||
if (this.account !== null) {
|
||||
this.usuarioExtraService.find(this.account.id).subscribe(usuarioExtra => {
|
||||
|
@ -138,7 +136,6 @@ export class PaypalDialogComponent implements OnInit {
|
|||
sendReceipt(): void {
|
||||
const now = dayjs();
|
||||
|
||||
debugger;
|
||||
this.factura = {
|
||||
nombreUsuario: String(this.usuarioExtra?.id!),
|
||||
nombrePlantilla: this.plantilla?.nombre!,
|
||||
|
|
|
@ -6,7 +6,6 @@ import { Pipe, PipeTransform, Injectable } from '@angular/core';
|
|||
@Injectable()
|
||||
export class FilterPipe implements PipeTransform {
|
||||
transform(items: any[], field: string, value: string): any[] {
|
||||
debugger;
|
||||
if (!items) {
|
||||
return [];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue