5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 07:34:16 +00:00

fix: corregido cuenta de origen de comentarios
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2024-02-15 15:05:27 -03:00
parent 1deb4053a7
commit 2de7568676
2 changed files with 5 additions and 5 deletions

View file

@ -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'

View file

@ -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'