Browse Source
Merge pull request #480 from ThibG/glitch-soc/fixes/glitch-soc-bio-escape
Fix glitch-style bio fields incorrect HTML escaping in public profiles
closed-social-glitch-2
ThibG
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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)) } |
|
|
|