mirror of
https://github.com/discourse/discourse.git
synced 2025-01-24 11:39:29 +08:00
f9648de897
Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
12 lines
359 B
Handlebars
12 lines
359 B
Handlebars
{{#each field.choices as |c|}}
|
|
<div class="radio-field-choice">
|
|
{{radio-button value=field.value
|
|
radioValue=c.id
|
|
label=c.label
|
|
extraLabel=c.extra_label
|
|
icon=c.icon
|
|
description=c.description
|
|
onChange=(action "changed")}}
|
|
</div>
|
|
{{/each}}
|