diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-22 10:07:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 10:07:11 +0100 |
commit | 392b367835c3c25e37be7c45e8cd130422de10aa (patch) | |
tree | a82ee4a1148ff13d05991b8c35a391c10933ea81 /app/views/settings/migrations | |
parent | 4e9855e09aa4cc2720fed262ffaa6e0c94cf5688 (diff) |
Fix IDN domains not being rendered correctly in a few left-over places (#17848)
Diffstat (limited to 'app/views/settings/migrations')
-rw-r--r-- | app/views/settings/migrations/show.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/settings/migrations/show.html.haml b/app/views/settings/migrations/show.html.haml index 078eaebc6..492f6fe12 100644 --- a/app/views/settings/migrations/show.html.haml +++ b/app/views/settings/migrations/show.html.haml @@ -8,7 +8,7 @@ = render 'application/card', account: current_account.moved_to_account .fields-row__column.fields-group.fields-row__column-6 %p.hint - %span.positive-hint= t('migrations.redirecting_to', acct: current_account.moved_to_account.acct) + %span.positive-hint= t('migrations.redirecting_to', acct: current_account.moved_to_account.pretty_acct) %p.hint= t('migrations.cancel_explanation') @@ -76,7 +76,7 @@ - if migration.target_account.present? = compact_account_link_to migration.target_account - else - = migration.acct + = migration.pretty_acct %td= number_with_delimiter migration.followers_count |