Browse Source

Fix glitch-style bio fields incorrect HTML escaping in public profiles

closed-social-glitch-2
Thibaut Girka 6 years ago
parent
commit
cc8d81519e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/views/accounts/_header.html.haml

+ 2
- 2
app/views/accounts/_header.html.haml View File

@ -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)) }

Loading…
Cancel
Save