5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 11:16:23 +00:00

fix: corregidas lineas segun CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2024-01-29 13:48:11 -03:00
parent 4b67968d3b
commit 2f803f9ea6
5 changed files with 8 additions and 8 deletions

View file

@ -3,6 +3,6 @@
%button#dropdownMenuButton.btn.btn-outline-secondary.dropdown-toggle{:type => "button", "data-toggle" => "dropdown", "aria-haspopup" => "true", "aria-expanded" => "false"} %button#dropdownMenuButton.btn.btn-outline-secondary.dropdown-toggle{:type => "button", "data-toggle" => "dropdown", "aria-haspopup" => "true", "aria-expanded" => "false"}
%span #{text} %span #{text}
.dropdown-menu{"aria-labelledby" => "dropdownMenuButton"} .dropdown-menu{"aria-labelledby" => "dropdownMenuButton"}
%a.dropdown-item{:href => "#"} Action %a.dropdown-item{ href: '#' } Action
%a.dropdown-item{:href => "#"} Another action %a.dropdown-item{ href: '#' } Another action
%a.dropdown-item{:href => "#"} Something else here %a.dropdown-item{ href: '#' } Something else here

View file

@ -9,4 +9,4 @@
- @btn_box_params.each do |btn| - @btn_box_params.each do |btn|
- @class = btn[1] - @class = btn[1]
= render 'moderation_queue/btn_base', href: btn[2], class: @class, text: btn[0] = render 'moderation_queue/btn_base', href: btn[2], class: @class, text: btn[0]

View file

@ -1,5 +1,5 @@
.flex.py-2.mx-2.text-center .flex.py-2.mx-2.text-center
%h4= t('.profile_name') + ": " + @remote_profile['name'] %h4= t('.profile_name') + ": " + @remote_profile['name']
%h5= t('.profile_id') + ": " + @remote_profile['id'] %h5= t('.profile_id') + ": " + @remote_profile['id']
%h5= t('.profile_published') + ": " + @remote_profile['published'] %h5= t('.profile_published') + ": " + @remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
= render 'moderation_queue/profile_button_box' = render 'moderation_queue/profile_button_box'

View file

@ -1,3 +1,3 @@
.flex .flex
%h1.text-center= t('.profile') %h1.text-center= t('.profile')
= render 'moderation_queue/remote_profile' = render 'moderation_queue/remote_profile'

View file

@ -4,4 +4,4 @@
- @moderation_queue.each do |comment| - @moderation_queue.each do |comment|
= render 'moderation_queue/comment', comment: comment = render 'moderation_queue/comment', comment: comment
.row.d-flex.justify-content-center .row.d-flex.justify-content-center
= render 'moderation_queue/comment_button_box' = render 'moderation_queue/comment_button_box'