[DURACOM-191] fix missing imports

This commit is contained in:
Andrea Barbasso
2024-02-02 10:12:29 +01:00
parent 16bd9b17ac
commit 9ead6f5b33
2 changed files with 4 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import { InputSuggestionsComponent } from '../../../../../../shared/input-sugges
import { NgClass, NgFor, AsyncPipe } from '@angular/common';
import { DebounceDirective } from '../../../../../../shared/utils/debounce.directive';
import { ClickOutsideDirective } from '../../../../../../shared/utils/click-outside.directive';
import { TranslateModule } from '@ngx-translate/core';
@Component({
selector: 'ds-person-input-suggestions',
@@ -19,7 +20,7 @@ import { ClickOutsideDirective } from '../../../../../../shared/utils/click-outs
}
],
standalone: true,
imports: [FormsModule, ClickOutsideDirective, DebounceDirective, NgClass, NgFor, AsyncPipe]
imports: [FormsModule, ClickOutsideDirective, DebounceDirective, NgClass, NgFor, AsyncPipe, TranslateModule]
})
/**

View File

@@ -7,6 +7,7 @@ import {
ProfilePageSecurityFormComponent
} from '../../../../../app/profile-page/profile-page-security-form/profile-page-security-form.component';
import { AsyncPipe, NgIf } from '@angular/common';
import { BrowserOnlyPipe } from '../../../../../app/shared/utils/browser-only.pipe';
@Component({
selector: 'ds-forgot-password-form',
@@ -18,6 +19,7 @@ import { AsyncPipe, NgIf } from '@angular/common';
imports: [
TranslateModule,
ProfilePageSecurityFormComponent,
BrowserOnlyPipe,
AsyncPipe,
NgIf
],