diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-05-12 17:45:30 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-05-12 17:45:30 +0200 |
commit | cc8d81519e337d0dcc37ca07a6c4e7e300fb9346 (patch) | |
tree | 6952b20a850d9e7661d73b720ab896a6755eb417 /app/views/accounts | |
parent | 34142ab29c33104793afe3199f102d84b83b9b57 (diff) |
Fix glitch-style bio fields incorrect HTML escaping in public profiles
Diffstat (limited to 'app/views/accounts')
-rw-r--r-- | app/views/accounts/_header.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml index 652213526..b5653f161 100644 --- a/app/views/accounts/_header.html.haml +++ b/app/views/accounts/_header.html.haml @@ -37,8 +37,8 @@ .account__header__fields - processed_bio[:metadata].each do |i| %dl - %dt.emojify{ title: i[0] }= i[0] - %dd.emojify{ title: i[1] }= i[1] + %dt.emojify{ title: i[0] }!= i[0] + %dd.emojify{ title: i[1] }!= i[1] .details-counters .counter{ class: active_nav_class(short_account_url(account)) } |