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) {