Tab content disappearing in modal

I have a very simple modal view created:

<ion-modal-view>
<ion-tabs class="tabs-light">
	<ion-tab title="TAB 1">
		<ion-content>
			<div>TAB 1</div>
		</ion-content>
	</ion-tab>
	<ion-tab title="TAB 2">
		<ion-content>
			<div>TAB 2</div>
		</ion-content>
	</ion-tab>
</ion-tabs>
</ion-modal-view>

When I switch from TAB 1, to TAB 2, and back to TAB 1, the content from TAB 1 is gone. This broke when I upgraded from the beta to version 1. Any thoughts?

Codepen example I made seems to be working ok, so it must be something else

facing the same issue. did you find a solution to this?

No, I ended up just changing it so I didn’t have to have tabs in the modal view…