You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like adding radio fields in the Materialize theme is broken due to a missing 'for' attribute on the label tag. In other words, you can't select the radio buttons. Here is an example:
Looks like adding radio fields in the Materialize theme is broken due to a missing 'for' attribute on the label tag. In other words, you can't select the radio buttons. Here is an example:
AccountsTemplates.addField({
_id: "account",
type: "radio",
displayName: "Choose account type",
select: [
{
text: "Type 1",
value: "t1",
},
{
text: "Type 2",
value: "t2",
},
],
});
This is the html generated:
Notice there is no 'for' attribute on the label tag. I believe it should look like this:
Please let me know if I am missing something and thank you for this awesome package!
The text was updated successfully, but these errors were encountered: