rbuchmeier / nordicNumbers

0 stars 0 forks source link

Radio buttons not unselecting #24

Closed rbuchmeier closed 7 years ago

rbuchmeier commented 7 years ago

The radio buttons in the form in the SelectorComponent are not "unchecking"/"unselecting". (Also perhaps worth a note this means you can have multiple selected at the same time, even though they are radio buttons).

Perhaps this has something to do with Bootstrap?

rbuchmeier commented 7 years ago

8b8beed4a79184132bdec185c798a025b8a84700 (<--- Changelog) - Fixes issue by giving both radio buttons the same name. @gannetjG , please take a look at the changelog above. The reason for this is because we gave the input elements different name attributes. So the form was treating those radio buttons as different questions. But we want them to be the same question, so we give them the same name.

Let me know if that doesn't make sense.