<%= render "shared/flag_actions", flaggable: comment, divider: true %>
<% if can?(:hide, comment) || can?(:hide, comment.user) %>
<% if comment.author == current_user %>
•
<%= button_to t("comments.actions.delete"),
hide_comment_path(comment),
method: :put, remote: true, class: "delete-comment", form_class: "delete-comment-form",
data: { confirm: t("comments.actions.confirm_delete") } %>
<% else %>
<%= render Shared::ModerationActionsComponent.new(comment) %>
<% end %>
<% end %>