discourse/app/assets/javascripts/select-kit/addon/templates/components/dropdown-select-box/dropdown-select-box-row.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
353 B
Handlebars
Raw Normal View History

{{#if this.icons}}
<div class="icons">
<span class="selection-indicator"></span>
{{#each this.icons as |icon|}}
{{d-icon icon translatedTitle=(dasherize this.title)}}
{{/each}}
2017-10-19 15:51:08 -04:00
</div>
{{/if}}
<div class="texts">
<span class="name">{{html-safe this.label}}</span>
<span class="desc">{{html-safe this.description}}</span>
2022-12-28 07:28:11 -05:00
</div>