mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 09:03:44 +08:00
f2e14a3946
Co-authored-by: Neil Lalonde <neillalonde@gmail.com>
15 lines
433 B
Handlebars
15 lines
433 B
Handlebars
<ul class="grid">
|
|
{{#each field.choices as |choice|}}
|
|
<li>
|
|
{{font-preview wizard=wizard
|
|
fontId=choice.id
|
|
selectedId=field.value
|
|
onChange=(action "changed")}}
|
|
{{radio-button radioValue=choice.id
|
|
label=choice.label
|
|
value=field.value
|
|
onChange=(action "changed")}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|