Quick fixes
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user