[DEV] add missing component in the init of the application

This commit is contained in:
Edouard DUPIN 2023-01-08 12:23:10 +01:00
parent 9d9fcc3eb5
commit e8a957a183
2 changed files with 6 additions and 4 deletions

View File

@ -39,11 +39,10 @@ import {
UserService,
} from 'common/service';
import { CommonModule } from '@angular/common';
import { ErrorComponent, PopInComponent, SpinerComponent, TopMenuComponent, UploadFileComponent } from 'common/component';
import { ErrorComponent, PopInComponent, SpinerComponent, TopMenuComponent, UploadFileComponent, PasswordEntryComponent, EntryComponent, AsyncActionStatusComponent, ErrorMessageStateComponent, CheckboxComponent } from 'common/component';
import { ForbiddenScene } from 'common/scene';
import { AdminUserService, ApplicationService, SettingsService } from 'app/service';
import { PopInUploadProgress, PopInDeleteConfirm } from 'common/popin';
import { PasswordEntryComponent } from './component';
@NgModule({
declarations: [
@ -52,7 +51,11 @@ import { PasswordEntryComponent } from './component';
UploadFileComponent,
ErrorComponent,
PasswordEntryComponent,
EntryComponent,
SpinerComponent,
AsyncActionStatusComponent,
ErrorMessageStateComponent,
CheckboxComponent,
PopInComponent,
PopInUploadProgress,

View File

@ -1,5 +1,4 @@
import { PasswordEntryComponent } from "./password-entry/password-entry";
export {
PasswordEntryComponent
};