2024-11-20 09:43:19 -05:00
|
|
|
<label for={{this.name}}>{{this.title}}</label>
|
2020-02-07 04:34:58 -05:00
|
|
|
{{house-ads-chooser
|
2024-11-20 09:43:19 -05:00
|
|
|
settingValue=this.adValue
|
|
|
|
choices=this.adNames
|
|
|
|
onChange=(action (mut this.adValue))
|
2020-02-07 04:34:58 -05:00
|
|
|
}}
|
2020-09-04 07:24:14 -04:00
|
|
|
<div class="setting-controls">
|
2024-11-20 09:43:19 -05:00
|
|
|
{{#if this.changed}}
|
2023-05-26 10:20:47 -04:00
|
|
|
<DButton class="ok" @action={{action "save"}} @icon="check" />
|
|
|
|
<DButton class="cancel" @action={{action "cancel"}} @icon="times" />
|
2019-04-18 17:52:59 -04:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2024-11-20 09:43:19 -05:00
|
|
|
<p class="help">{{this.help}}</p>
|