From 3095e614c2e84fb46b5d10eca82232d68ffa9327 Mon Sep 17 00:00:00 2001 From: youstinus Date: Sun, 19 May 2019 15:13:27 +0300 Subject: [PATCH] fixed for new release --- ionic-ui/package.json | 2 +- ionic-ui/src/app/pages/about/about.page.html | 2 +- .../pages/change-password/change-password.page.ts | 2 +- .../src/app/pages/not-found/not-found.module.ts | 14 +++----------- 4 files changed, 6 insertions(+), 14 deletions(-) diff --git a/ionic-ui/package.json b/ionic-ui/package.json index 68af930..8a42fc1 100644 --- a/ionic-ui/package.json +++ b/ionic-ui/package.json @@ -109,4 +109,4 @@ "ios" ] } -} +} \ No newline at end of file diff --git a/ionic-ui/src/app/pages/about/about.page.html b/ionic-ui/src/app/pages/about/about.page.html index 59f428d..124c625 100644 --- a/ionic-ui/src/app/pages/about/about.page.html +++ b/ionic-ui/src/app/pages/about/about.page.html @@ -50,7 +50,7 @@

- {{aboutOpinion}} + {{aboutOpinion}}
diff --git a/ionic-ui/src/app/pages/change-password/change-password.page.ts b/ionic-ui/src/app/pages/change-password/change-password.page.ts index d1ba3d3..ca68557 100644 --- a/ionic-ui/src/app/pages/change-password/change-password.page.ts +++ b/ionic-ui/src/app/pages/change-password/change-password.page.ts @@ -34,7 +34,7 @@ export class ChangePasswordPage implements OnInit { public matching_passwords_group: FormGroup; private email: string; private resetParam: string; - private forgotPass = false; + public forgotPass = false; constructor( public toastCtrl: ToastController, diff --git a/ionic-ui/src/app/pages/not-found/not-found.module.ts b/ionic-ui/src/app/pages/not-found/not-found.module.ts index d971e12..1be9a4c 100644 --- a/ionic-ui/src/app/pages/not-found/not-found.module.ts +++ b/ionic-ui/src/app/pages/not-found/not-found.module.ts @@ -1,21 +1,17 @@ -import { NgModule, Component } from '@angular/core'; +import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { Routes, RouterModule } from '@angular/router'; import { IonicModule } from '@ionic/angular'; import { NotFoundPage } from './not-found.page'; - const routes: Routes = [ { path: '', component: NotFoundPage } ]; -@Component({ - selector: 'app-notfound', - templateUrl: './not-found.page.html' -}) + @NgModule({ imports: [ CommonModule, @@ -23,11 +19,7 @@ const routes: Routes = [ IonicModule, RouterModule.forChild(routes) ], - declarations: [NotFoundPage], - entryComponents: [ - NotFoundPage -] - + declarations: [NotFoundPage] }) export class NotFoundPageModule { }