From 76289b16e002506c80f83697f33ae3118b30ff1a Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Sat, 22 Oct 2022 17:15:03 +0300 Subject: [PATCH] fixed upload area text on upload component --- src/lib/upload-file/upload-file.component.html | 2 +- src/lib/upload-file/upload-file.module.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/upload-file/upload-file.component.html b/src/lib/upload-file/upload-file.component.html index aecc8a1..31a4ab2 100644 --- a/src/lib/upload-file/upload-file.component.html +++ b/src/lib/upload-file/upload-file.component.html @@ -2,7 +2,7 @@
-
+
diff --git a/src/lib/upload-file/upload-file.module.ts b/src/lib/upload-file/upload-file.module.ts index e0b7961..96cdb92 100644 --- a/src/lib/upload-file/upload-file.module.ts +++ b/src/lib/upload-file/upload-file.module.ts @@ -3,12 +3,13 @@ import { UploadFileComponent } from './upload-file.component'; import { DragDropFileUploadDirective } from './drag-drop-file-upload.directive'; import { MatIconModule } from '@angular/material/icon'; import { CommonModule } from '@angular/common'; +import { TranslateModule } from '@ngx-translate/core'; const components = [UploadFileComponent, DragDropFileUploadDirective]; @NgModule({ declarations: [...components], exports: [...components], - imports: [MatIconModule, CommonModule], + imports: [MatIconModule, CommonModule, TranslateModule] }) export class IqserUploadFileModule {}