I'm developing an Ionic (v3) application that contains a list of products in Home, but when I click on a product it does not run anything and hangs the screen. The problem is that I can not get the error because it is in Ionic View.
Does anyone have an idea of what it can be?
Javascript code:
goTo(page, params) {
this.nav.push(page, {params: params});
}
...
HTML code:
<div text-left class="product-item" tappable (click)="goTo('ProductPage', y)">...