discourse/app/assets/javascripts/admin/addon/components/inline-edit-checkbox.hbs
Kris a914d3230b
DEV: remap all core icons for fontawesome 6 upgrade (#28715)
Followup to 7d8974d02f

Co-authored-by: David Taylor <david@taylorhq.com>
2024-09-13 16:50:52 +01:00

16 lines
377 B
Handlebars

<label class="checkbox-label">
<Input @type="checkbox" disabled={{this.disabled}} @checked={{this.buffer}} />
{{i18n this.labelKey}}
</label>
{{#if this.changed}}
<DButton
@action={{this.apply}}
@icon="check"
class="btn-primary btn-small submit-edit"
/>
<DButton
@action={{this.cancel}}
@icon="xmark"
class="btn-small cancel-edit"
/>
{{/if}}