mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-22 07:41:51 +00:00
fix: correcciones varias de CI
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
6095040008
commit
d5bfbc578f
3 changed files with 8 additions and 8 deletions
|
@ -8,7 +8,7 @@
|
|||
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_allow'), path: '/'
|
||||
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_reject'), path: '/'
|
||||
|
||||
- @moderation_queue.map{|c| c['attributedTo']}.uniq.each do |remote_profile|
|
||||
- @moderation_queue.map{ |c| c['attributedTo'] }.uniq.each do |remote_profile|
|
||||
= render 'account', profile: remote_profile
|
||||
|
||||
-# Botones de Moderación
|
||||
|
@ -21,3 +21,4 @@
|
|||
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_deny'), class: @class, href: ''
|
||||
- @class = 'btn-danger'
|
||||
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_report'), class: @class, href: ''
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
.flex
|
||||
.card
|
||||
.flex
|
||||
.card
|
||||
.card-body
|
||||
%input{ type: 'checkbox', value: '', class: 'ml-5' }
|
||||
%h4.d-inline.red.ml-5= t('moderation_queue.instances.block_lists')
|
||||
%h4.d-inline.red.ml-5= t('moderation_queue.instances.block_lists')
|
||||
|
|
|
@ -2,10 +2,9 @@
|
|||
- host ||= instance['uri']
|
||||
- host = "https://#{host}"
|
||||
|
||||
|
||||
%a{href: host}= instance['title']
|
||||
%a{ href: host }= instance['title']
|
||||
%p= instance['description']
|
||||
%span Users:
|
||||
%span
|
||||
= instance.dig('usage', 'users', 'active_month')
|
||||
= instance.dig('stats', 'user_count')
|
||||
= instance.dig('usage', 'users', 'active_month')
|
||||
= instance.dig('stats', 'user_count')
|
||||
|
|
Loading…
Reference in a new issue