Hi,
I am not sure whether I am posting this in the correct section or not, since I am quite new to the forums, but I'll give it a go. I am trying to build an app with Ionic 2 typescript, but I encountered a bug wich kinda stops me developing the app futher. I've added a radio group with four options, when I try to select an option it selects them all, at least visually.
Has anyone else encountered this bug? Would appreciatie the help. You'll find my html and a screenshot below.
PS: I've also tried to create a CodePen example of the bug, but I couldn't find a Ionic 2 cdn to add to my CodePen en thus create an example. If that is possible, I'd like to know how for future questions.
<ion-content class="detail">
<ion-card>
<img src="http://placehold.it/300x250" />
</ion-card>
<ion-list radio-group>
<ion-list-header>
Options
</ion-list-header>
<ion-radio>
Option 1
</ion-radio>
<ion-radio>
Option 2
</ion-radio>
<ion-radio>
Option 3
</ion-radio>
<ion-radio>
Option 4
</ion-radio>
</ion-list>
</ion-content>