Ionic lab view not scrolling

Hey all,

Today I have noticed a screen in my app that requires scrolling no longer scrolls in the ionic serve --lab view (had previously). Anyone else have the same issue, it is scrolling fine on the device itself, seems to be just the lab view.

The general layout of the template page is:
<ion-content> <ion-view> ... </ion-content> </ion-view>

With some html5 tags (<header> and <section>)

Cheers
Adam

I have the same problem, any update on this?

All you need to do is add overflow-scroll="true" to your ion-content tag

<ion-content overflow-scroll="true">
</ion-content>