mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
[DURACOM-191] fix missing imports
This commit is contained in:
@@ -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]
|
||||
})
|
||||
|
||||
/**
|
||||
|
@@ -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
|
||||
],
|
||||
|
Reference in New Issue
Block a user