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/auth | |
parent | 4e9855e09aa4cc2720fed262ffaa6e0c94cf5688 (diff) |
Fix IDN domains not being rendered correctly in a few left-over places (#17848)
Diffstat (limited to 'app/views/auth')
-rw-r--r-- | app/views/auth/registrations/_status.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/registrations/_status.html.haml b/app/views/auth/registrations/_status.html.haml index 68954a5da..759bbc41c 100644 --- a/app/views/auth/registrations/_status.html.haml +++ b/app/views/auth/registrations/_status.html.haml @@ -7,7 +7,7 @@ = t('auth.status.pending') - elsif @user.account.moved_to_account_id.present? .flash-message.warning - = t('auth.status.redirecting_to', acct: @user.account.moved_to_account.acct) + = t('auth.status.redirecting_to', acct: @user.account.moved_to_account.pretty_acct) = link_to t('migrations.cancel'), settings_migration_path %h3= t('auth.status.account_status') |