2.5.16
https://jsfiddle.net/21am3tc7/34/
Click on Add button
The first component should have checked first option label on value = 0
The first component has data.type = 0 but no option label is checked after Add button is clicked
Your problem comes from the radio buttons all having the same name. Try removing the attribute name 😉
@posva thanks for fast response, you are absolutely right, I was blind. Thanks.
Most helpful comment
Your problem comes from the radio buttons all having the same name. Try removing the attribute
name😉