mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 21:57:19 +00:00
Fix error when viewing statuses to deleted replies in moderation view (#32986)
This commit is contained in:
parent
37f00fb018
commit
30e9c7137b
|
@ -10,7 +10,7 @@
|
||||||
- elsif status.reply? && status.in_reply_to_id.present?
|
- elsif status.reply? && status.in_reply_to_id.present?
|
||||||
.status__prepend
|
.status__prepend
|
||||||
= material_symbol('reply')
|
= material_symbol('reply')
|
||||||
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(status.in_reply_to_account, path: admin_account_status_path(status.thread.account_id, status.in_reply_to_id)))
|
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(status.in_reply_to_account, path: status.thread.present? ? admin_account_status_path(status.thread.account_id, status.in_reply_to_id) : nil))
|
||||||
.status__content><
|
.status__content><
|
||||||
- if status.proper.spoiler_text.blank?
|
- if status.proper.spoiler_text.blank?
|
||||||
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
- if @status.reply?
|
- if @status.reply?
|
||||||
%tr
|
%tr
|
||||||
%th= t('admin.statuses.in_reply_to')
|
%th= t('admin.statuses.in_reply_to')
|
||||||
%td= admin_account_link_to @status.in_reply_to_account, path: admin_account_status_path(@status.thread.account_id, @status.in_reply_to_id)
|
%td= admin_account_link_to @status.in_reply_to_account, path: @status.thread.present? ? admin_account_status_path(@status.thread.account_id, @status.in_reply_to_id) : nil
|
||||||
%tr
|
%tr
|
||||||
%th= t('admin.statuses.application')
|
%th= t('admin.statuses.application')
|
||||||
%td= @status.application&.name
|
%td= @status.application&.name
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
- elsif @status.reply? && @status.in_reply_to_id.present?
|
- elsif @status.reply? && @status.in_reply_to_id.present?
|
||||||
.status__prepend
|
.status__prepend
|
||||||
= material_symbol('reply')
|
= material_symbol('reply')
|
||||||
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(@status.in_reply_to_account, path: admin_account_status_path(@status.thread.account_id, @status.in_reply_to_id)))
|
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(@status.in_reply_to_account, path: @status.thread.present? ? admin_account_status_path(@status.thread.account_id, @status.in_reply_to_id) : nil))
|
||||||
.status__content><
|
.status__content><
|
||||||
- if @status.proper.spoiler_text.blank?
|
- if @status.proper.spoiler_text.blank?
|
||||||
= prerender_custom_emojis(status_content_format(@status.proper), @status.proper.emojis)
|
= prerender_custom_emojis(status_content_format(@status.proper), @status.proper.emojis)
|
||||||
|
|
Loading…
Reference in a new issue