I have problem with ion slides content height if i have different slides. I have set height auto but if i change to another slide height does not reset.
<ion-slides #pageSlider (ionSlideWillChange)="changeWillSlide($event)" style="height:auto">
<ion-slide>
<h1>ContentTab 1</h1>
<h1>ContentTab 1</h1>
<h1>ContentTab 1</h1>
some more content....
</ion-slide>
<ion-slide>
<h1>ContentTab 1</h1>
<h1>ContentTab 1</h1>
some more content....
</ion-slide>
<ion-slide>
<h1>ContentTab 1</h1>
some more content....
</ion-slide>
</ion-slides>
Here is link to view project
https://stackblitz.com/edit/ionic-gyfjks?file=pages%2Fhome%2Fhome.html
Please help me to solve this issue.