remove debuggers

This commit is contained in:
Eduardo Quiros 2021-08-11 18:39:20 -06:00
parent 72719bcad9
commit 1766f657fe
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
5 changed files with 0 additions and 7 deletions

View File

@ -19,7 +19,6 @@ export class EncuestaFinalizarDialogComponent implements OnInit {
ngOnInit(): void {}
confirmFinalizar(encuesta: IEncuesta): void {
debugger;
const now = dayjs();
encuesta.estado = EstadoEncuesta.FINISHED;

View File

@ -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');

View File

@ -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' })

View File

@ -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!,

View File

@ -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 [];
}