diff --git a/src/app/entity-groups/research-entities/submission/item-list-elements/person/person-suggestions/person-input-suggestions.component.ts b/src/app/entity-groups/research-entities/submission/item-list-elements/person/person-suggestions/person-input-suggestions.component.ts index 4b5afe07ef..c270078ddd 100644 --- a/src/app/entity-groups/research-entities/submission/item-list-elements/person/person-suggestions/person-input-suggestions.component.ts +++ b/src/app/entity-groups/research-entities/submission/item-list-elements/person/person-suggestions/person-input-suggestions.component.ts @@ -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] }) /** diff --git a/src/themes/custom/app/forgot-password/forgot-password-form/forgot-password-form.component.ts b/src/themes/custom/app/forgot-password/forgot-password-form/forgot-password-form.component.ts index fe6af8ee91..37a794454d 100644 --- a/src/themes/custom/app/forgot-password/forgot-password-form/forgot-password-form.component.ts +++ b/src/themes/custom/app/forgot-password/forgot-password-form/forgot-password-form.component.ts @@ -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 ],