DEV: allows reports to display an html title (#12687)

eg: display an emoji in title
This commit is contained in:
Ahmed Gagan 2021-04-22 17:08:10 +05:30 committed by GitHub
parent 271a372e3d
commit 3867b8998c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View File

@ -278,6 +278,7 @@ const Report = EmberObject.extend({
return {
title: label.title,
htmlTitle: label.html_title,
sortProperty: label.sort_property || mainProperty,
mainProperty,
type,

View File

@ -2,4 +2,8 @@
{{d-button action=sortByLabel icon=sortIcon class="sort-btn"}}
{{/if}}
<span class="title">{{label.title}}</span>
{{#if label.htmlTitle}}
<span class="title">{{html-safe label.htmlTitle}}</span>
{{else}}
<span class="title">{{label.title}}</span>
{{/if}}

View File

@ -13,6 +13,10 @@
text-orientation: mixed;
text-align: right;
transform: rotate(180deg);
.emoji {
transform: rotate(-180deg);
}
}
.sort-btn {