mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 23:14:20 +08:00
16 lines
387 B
Handlebars
16 lines
387 B
Handlebars
<label class="checkbox-label">
|
|
<Input @type="checkbox" disabled={{this.disabled}} @checked={{this.buffer}} />
|
|
{{i18n this.labelKey}}
|
|
</label>
|
|
{{#if this.changed}}
|
|
<DButton
|
|
@action={{action "apply"}}
|
|
@class="btn-primary btn-small submit-edit"
|
|
@icon="check"
|
|
/>
|
|
<DButton
|
|
@action={{action "cancel"}}
|
|
@class="btn-small cancel-edit"
|
|
@icon="times"
|
|
/>
|
|
{{/if}} |