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;
constructor(public navCtrl: NavController, private navParams: NavParams) {
this.profile = navParams.get('profile');
constructor(public navCtrl: NavController, private _params: NavParams) {
this.profile = this._params.get('profile');
}
closeChat(event) {

View File

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