mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
f9648de897
Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
15 lines
436 B
Handlebars
15 lines
436 B
Handlebars
<ul class="grid">
|
|
{{#each field.choices as |choice|}}
|
|
<li>
|
|
{{theme-preview colorsId=choice.id
|
|
wizard=wizard
|
|
selectedId=field.value
|
|
onChange=(action "changed")}}
|
|
{{radio-button radioValue=choice.id
|
|
label=choice.id
|
|
value=field.value
|
|
onChange=(action "changed")}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|