mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +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 { 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]
|
||||||
})
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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
|
||||||
],
|
],
|
||||||
|
Reference in New Issue
Block a user