discourse/app/assets/javascripts/select-kit/addon/templates/components/selected-name.hbs
Peter Wagenet 371bbadb92
No implicit this codemod (#17235)
* Run no-implicit-this codemod for app templates
* Run tagless-ember-components-codemod for plugins
* Turn on no-implicit-this lint
2022-07-05 19:41:31 +02:00

22 lines
739 B
Handlebars

{{#if this.selectKit.options.showFullTitle}}
<div lang={{this.lang}} title={{this.title}} data-value={{this.value}} data-name={{this.name}} role="option" class="select-kit-selected-name selected-name choice">
{{#if this.item.icon}}
{{d-icon this.item.icon}}
{{/if}}
<span class="name">
{{this.label}}
</span>
{{#if this.shouldDisplayClearableButton}}
<DButton @class="btn-clear" @icon="times" @action={{this.selectKit.deselect}} @actionParam={{this.item}} @ariaLabel="clear_input" />
{{/if}}
</div>
{{else}}
{{#if this.item.icon}}
<div role="option" lang={{this.lang}} class="select-kit-selected-name selected-name choice">
{{d-icon this.item.icon}}
</div>
{{/if}}
{{/if}}