Cannot read property 'visitStatement'

After updating to beta 7 I got the following error when I navigate to a detail screen:

EXCEPTION: Error: Uncaught (in promise): TypeError: Cannot read property 'visitStatement' of undefined.

Code:

   itemTapped(event, activity) {
    console.log(activity);
    this.nav.push(ActivityPage);
  }

What could be the cause?

Cheers
Henk

1 Like

Finally… the cause was an empy click()…

6 Likes

Thanks, saved my life.

2 Likes

Thanks a lot, it was a empty click for me too :slight_smile: