Skip to content

Commit

Permalink
fixed for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
youstinus committed May 19, 2019
1 parent ac061d1 commit 3095e61
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ionic-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@
"ios"
]
}
}
}
2 changes: 1 addition & 1 deletion ionic-ui/src/app/pages/about/about.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h1>
<!-- Comment form -->
<ion-card>
<ion-card-header>
<ion-card-title [attr.class]="label">{{aboutOpinion}}</ion-card-title>
<ion-card-title>{{aboutOpinion}}</ion-card-title>
</ion-card-header>
<form [formGroup]="commentForm" class="list-form">
<ion-item no-padding class="animated fadeInUp">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
14 changes: 3 additions & 11 deletions ionic-ui/src/app/pages/not-found/not-found.module.ts
Original file line number Diff line number Diff line change
@@ -1,33 +1,25 @@
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,
FormsModule,
IonicModule,
RouterModule.forChild(routes)
],
declarations: [NotFoundPage],
entryComponents: [
NotFoundPage
]

declarations: [NotFoundPage]
})

export class NotFoundPageModule { }
Expand Down

0 comments on commit 3095e61

Please sign in to comment.