discourse/app/assets/javascripts/admin/addon/templates/components/admin-report-table-header.hbs
Ahmed Gagan 3867b8998c
DEV: allows reports to display an html title (#12687)
eg: display an emoji in title
2021-04-22 13:38:10 +02:00

10 lines
241 B
Handlebars

{{#if showSortingUI}}
{{d-button action=sortByLabel icon=sortIcon class="sort-btn"}}
{{/if}}
{{#if label.htmlTitle}}
<span class="title">{{html-safe label.htmlTitle}}</span>
{{else}}
<span class="title">{{label.title}}</span>
{{/if}}