From 28666d54057a739d7f68ebc340752ee3cac73b52 Mon Sep 17 00:00:00 2001 From: Artur Lang <209750178+artur-langl@users.noreply.github.com> Date: Thu, 22 Jan 2026 21:28:44 +0200 Subject: [PATCH] fix(file-dropzone): remove single console.log #66 --- .../form/file-dropzone/file-dropzone.component.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/community/components/form/file-dropzone/file-dropzone.component.ts b/community/components/form/file-dropzone/file-dropzone.component.ts index 9cda171e3..c43be1822 100644 --- a/community/components/form/file-dropzone/file-dropzone.component.ts +++ b/community/components/form/file-dropzone/file-dropzone.component.ts @@ -216,7 +216,7 @@ export class FileDropzoneComponent implements ControlValueAccessor, OnInit { this.accept(), this.maxSize(), this.sizeDisplayStandard(), - this._translationService.translate.bind(this._translationService) + this._translationService.translate.bind(this._translationService), ), type: "hint", position: "left", @@ -243,10 +243,9 @@ export class FileDropzoneComponent implements ControlValueAccessor, OnInit { } runValidators = async ( - control: AbstractControl + control: AbstractControl, ): Promise => { const controlFiles = control.value; - console.log("running validators"); if (!controlFiles || !controlFiles.length) { return null; @@ -270,7 +269,7 @@ export class FileDropzoneComponent implements ControlValueAccessor, OnInit { this.accept(), file, this.sizeDisplayStandard(), - this._translationService.translate.bind(this._translationService) + this._translationService.translate.bind(this._translationService), ); if (error && error.code) {