Merge pull request #29635 from open-craft/chris/LX-2398

Feat: Wrap the choice label with a <div> on choicegroup.html
This commit is contained in:
Giovanni Cimolin da Silva
2022-01-17 19:05:34 -03:00
committed by GitHub

View File

@@ -40,7 +40,10 @@ import six
/><label id="${id}-${choice_id}-label" for="input_${id}_${choice_id}"
class="${label_class}"
${describedby_html}
> ${HTML(choice_label)}
>
<div>
${HTML(choice_label)}
</div>
</label>
</div>
% endfor