mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
323a5f22e7
Note that for now pressing enter doesn’t make anything, this is awaiting another change.
32 lines
862 B
Handlebars
32 lines
862 B
Handlebars
{{#if selectKit.options.showFullTitle}}
|
|
<div tabindex="0" role="button" lang={{lang}} {{action "onSelectedNameClick"}} title={{title}} data-value={{value}} data-name={{name}} class="select-kit-selected-name selected-name choice">
|
|
{{#if item.icon}}
|
|
{{d-icon item.icon}}
|
|
{{/if}}
|
|
|
|
<span class="name">
|
|
{{label}}
|
|
</span>
|
|
|
|
{{#if selectKit.options.clearOnClick}}
|
|
{{d-icon "times"}}
|
|
{{else}}
|
|
{{#if shouldDisplayClearableButton}}
|
|
{{d-button
|
|
class="btn-clear"
|
|
icon="times"
|
|
action=selectKit.deselect
|
|
actionParam=item
|
|
ariaLabel="clear_input"
|
|
}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
{{else}}
|
|
{{#if item.icon}}
|
|
<div role="textbox" lang={{lang}} class="select-kit-selected-name selected-name choice">
|
|
{{d-icon item.icon}}
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|