diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-05 00:55:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-05 00:55:09 +0200 |
commit | 2ef9d650520f95e0b1b4b292bce7b80b9967f146 (patch) | |
tree | 9a878690ce9abc0ee7e53ac9c93e34879b3e6361 /app/views/accounts | |
parent | 66359ec522e687020ea853652ad36d4476f2720d (diff) |
Improve rendering of bio fields (#7353)
Fix #7335
Diffstat (limited to 'app/views/accounts')
-rw-r--r-- | app/views/accounts/_header.html.haml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml index f246f5326..41315f039 100644 --- a/app/views/accounts/_header.html.haml +++ b/app/views/accounts/_header.html.haml @@ -24,12 +24,11 @@ .account__header__content.p-note.emojify= Formatter.instance.simplified_format(account, custom_emojify: true) - unless account.fields.empty? - %table.account__header__fields - %tbody - - account.fields.each do |field| - %tr - %th.emojify= field.name - %td.emojify= Formatter.instance.format_field(account, field.value) + .account__header__fields + - account.fields.each do |field| + %dl + %dt.emojify{ title: field.name }= field.name + %dd.emojify{ title: field.value }= Formatter.instance.format_field(account, field.value) .details-counters .counter{ class: active_nav_class(short_account_url(account)) } |