update angualr to fix bug in 12.2.0

This commit is contained in:
Matt Hill
2021-09-07 18:17:27 -06:00
parent 369676cdc5
commit 690fa82ee9
9 changed files with 1608 additions and 1401 deletions

View File

@@ -16,7 +16,6 @@ import { FormObjectComponentModule } from 'src/app/components/form-object/form-o
FormObjectComponentModule,
ReactiveFormsModule,
],
entryComponents: [AppConfigPage],
exports: [AppConfigPage],
})
export class AppConfigPageModule { }

View File

@@ -6,15 +6,13 @@ import { BackupConfirmationComponentModule } from '../backup-confirmation/backup
import { SharingModule } from '../../modules/sharing.module'
@NgModule({
declarations: [AppRestoreComponent],
imports: [
CommonModule,
IonicModule,
BackupConfirmationComponentModule,
SharingModule,
],
declarations: [
AppRestoreComponent,
],
exports: [AppRestoreComponent],
})

View File

@@ -7,9 +7,7 @@ import { SharingModule } from 'src/app/modules/sharing.module'
import { FormsModule } from '@angular/forms'
@NgModule({
declarations: [
BackupConfirmationComponent,
],
declarations: [BackupConfirmationComponent],
imports: [
CommonModule,
IonicModule,

View File

@@ -11,7 +11,6 @@ import { FormsModule } from '@angular/forms'
IonicModule,
FormsModule,
],
entryComponents: [EnumListPage],
exports: [EnumListPage],
})
export class EnumListPageModule { }

View File

@@ -14,7 +14,6 @@ import { FormObjectComponentModule } from 'src/app/components/form-object/form-o
ReactiveFormsModule,
FormObjectComponentModule,
],
entryComponents: [GenericFormPage],
exports: [GenericFormPage],
})
export class GenericFormPageModule { }

View File

@@ -5,11 +5,12 @@ import { MarkdownPage } from './markdown.page'
import { SharingModule } from 'src/app/modules/sharing.module'
@NgModule({
declarations: [MarkdownPage],
imports: [
CommonModule,
IonicModule,
SharingModule,
],
declarations: [MarkdownPage],
exports: [MarkdownPage],
})
export class MarkdownPageModule { }

View File

@@ -6,12 +6,13 @@ import { SharingModule } from 'src/app/modules/sharing.module'
import { FormsModule } from '@angular/forms'
@NgModule({
declarations: [OSWelcomePage],
imports: [
CommonModule,
IonicModule,
FormsModule,
SharingModule,
],
declarations: [OSWelcomePage],
exports: [OSWelcomePage],
})
export class OSWelcomePageModule { }