2020-04-01 14:30:38 -04:00
|
|
|
{{#each field.choices as |c|}}
|
|
|
|
<div class="checkbox-field-choice {{fieldClass}}">
|
|
|
|
<label id={{c.id}} value={{c.label}}>
|
2022-06-30 06:30:50 -04:00
|
|
|
<Input @type="checkbox" class="wizard-checkbox" @click={{action "changed" value="target"}} @checked={{c.checked}} />
|
2020-04-06 15:00:55 -04:00
|
|
|
{{#if c.icon}}
|
|
|
|
{{d-icon c.icon}}
|
|
|
|
{{/if}}
|
2020-04-01 14:30:38 -04:00
|
|
|
{{c.label}}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|