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