mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 05:03:39 +08:00
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>
|