mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 07:06:23 +00:00
fix: corregido cuenta de origen de comentarios
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
1deb4053a7
commit
2de7568676
2 changed files with 5 additions and 5 deletions
|
@ -2,8 +2,7 @@
|
|||
= render 'components/comments_filters'
|
||||
|
||||
- moderation_queue.each do |comment|
|
||||
|
||||
= render 'comment', comment: comment, profile: @remote_profile
|
||||
= render 'comment', comment: comment, profile: comment['attributedTo']
|
||||
|
||||
-# Botones moderación
|
||||
= render 'components/comments_btn_box'
|
|
@ -12,12 +12,13 @@
|
|||
%dd= remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
|
||||
|
||||
%dt= t('.profile_summary')
|
||||
%dd= remote_profile['summary']
|
||||
%dd= sanitize remote_profile['summary']
|
||||
|
||||
= render 'moderation_queue/comments', moderation_queue: @moderation_queue
|
||||
|
||||
%h3.pt-4= t('.profile')
|
||||
%h4.my-2= t('.profile_name') + ': ' + remote_profile['name']
|
||||
%dl.mt-5
|
||||
%dt= t('.profile_name')
|
||||
%dd= remote_profile['name']
|
||||
|
||||
-# Botones de Moderación
|
||||
= render 'components/comments_btn_box'
|
||||
|
|
Loading…
Reference in a new issue