1
0

[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 { NgClass, NgFor, AsyncPipe } from '@angular/common';
import { DebounceDirective } from '../../../../../../shared/utils/debounce.directive'; import { DebounceDirective } from '../../../../../../shared/utils/debounce.directive';
import { ClickOutsideDirective } from '../../../../../../shared/utils/click-outside.directive'; import { ClickOutsideDirective } from '../../../../../../shared/utils/click-outside.directive';
import { TranslateModule } from '@ngx-translate/core';
@Component({ @Component({
selector: 'ds-person-input-suggestions', selector: 'ds-person-input-suggestions',
@@ -19,7 +20,7 @@ import { ClickOutsideDirective } from '../../../../../../shared/utils/click-outs
} }
], ],
standalone: true, 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 ProfilePageSecurityFormComponent
} from '../../../../../app/profile-page/profile-page-security-form/profile-page-security-form.component'; } from '../../../../../app/profile-page/profile-page-security-form/profile-page-security-form.component';
import { AsyncPipe, NgIf } from '@angular/common'; import { AsyncPipe, NgIf } from '@angular/common';
import { BrowserOnlyPipe } from '../../../../../app/shared/utils/browser-only.pipe';
@Component({ @Component({
selector: 'ds-forgot-password-form', selector: 'ds-forgot-password-form',
@@ -18,6 +19,7 @@ import { AsyncPipe, NgIf } from '@angular/common';
imports: [ imports: [
TranslateModule, TranslateModule,
ProfilePageSecurityFormComponent, ProfilePageSecurityFormComponent,
BrowserOnlyPipe,
AsyncPipe, AsyncPipe,
NgIf NgIf
], ],