discourse/app/assets/javascripts/wizard/templates/components/theme-previews.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
436 B
Handlebars
Raw Normal View History

<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>