Quick fixes

This commit is contained in:
2018-03-07 00:54:57 -05:00
parent 396078240b
commit 99259489ab
2 changed files with 4 additions and 4 deletions

View File

@@ -12,8 +12,8 @@ export class ChatPage {
profile: any; profile: any;
constructor(public navCtrl: NavController, private navParams: NavParams) { constructor(public navCtrl: NavController, private _params: NavParams) {
this.profile = navParams.get('profile'); this.profile = this._params.get('profile');
} }
closeChat(event) { closeChat(event) {

View File

@@ -10,8 +10,8 @@ export class LightboxPage {
image: string; image: string;
constructor(public navCtrl: NavController, private navParams: NavParams) { constructor(public navCtrl: NavController, private _params: NavParams) {
this.image = navParams.get('image'); this.image = this._params.get('image');
} }
close(event) { close(event) {