FIX: Avoid double-encoding featured topic title in user card (#20739)
a373bf2a
updated the behavior of `replace-emoji` so that the input is treated as unsafe-by-default. `fancy_title` is already escaped, so we need to mark it as html-safe to avoid it being double-escaped.
There is no need to html-safe the result of replace-emoji - it's already done as part of the helper.
This commit is contained in:
parent
80367b827a
commit
597316125f
|
@ -241,8 +241,8 @@
|
||||||
this.user.featured_topic.slug
|
this.user.featured_topic.slug
|
||||||
this.user.featured_topic.id
|
this.user.featured_topic.id
|
||||||
}}
|
}}
|
||||||
>{{html-safe
|
>{{replace-emoji
|
||||||
(replace-emoji this.user.featured_topic.fancy_title)
|
(html-safe this.user.featured_topic.fancy_title)
|
||||||
}}</LinkTo>
|
}}</LinkTo>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue