discourse/app/assets/javascripts/select-kit/templates/components/multi-select/selected-name.hbs
Joffrey JAFFEUX 38668818a5
FIX: allows forcing unsafe string in select-kit (#6386)
forceEscape will be defaulted to true before next release.
2018-09-12 12:19:04 +02:00

14 lines
287 B
Handlebars

{{#if headerContent}}<div class="header">{{headerContent}}</div>{{/if}}
<div class="body">
<span class="name">
{{#if forceEscape}}
{{label}}
{{else}}
{{{label}}}
{{/if}}
</span>
</div>
{{#if footerContent}}<div class="footer">{{footerContent}}</div>{{/if}}