Radio buttons not working correctly with prompts in alert

Hello everyone

I need help please, Radio buttons not showing correctly with prompts

image

let alert = Alert.create({ title: "Alert", inputs: [ { name : 'FirstName', placeholder: "FirstName" }, { name: "LastName", placeholder: "LastName" }, { name: "Phone", placeholder: "Phone" }, { name: "E-mail", placeholder: "E-mail" }, { type: "radio", label: "male", value:"m" }, { type: "radio", label: "female", value:"f" }, ], buttons: [ { text: 'Cancel', handler: data => { console.log('Cancel clicked'); } }, { text: 'Save', handler: data => { console.log('Saved clicked'); } } ] });

Just a trace of the bug you filled: https://github.com/driftyco/ionic/issues/5538