discourse/app/assets/javascripts/admin/addon/components/site-settings/bool.hbs
Martin Brennan 88ae4c7b5c
FIX: Add checkbox-label class to site setting checkboxes (#24075)
Followup to e2d9117378, which
made these labels bold because they were missing the correct
class.
2023-10-25 09:14:27 +10:00

6 lines
214 B
Handlebars

<label class="checkbox-label">
<Input @type="checkbox" @checked={{this.enabled}} />
<span>{{html-safe this.setting.description}}</span>
</label>
<SettingValidationMessage @message={{this.validationMessage}} />