retrospring/app/views/answerbox/_comments.html.haml
2024-03-10 18:23:28 +01:00

6 lines
186 B
Text

- if comments.all.count.zero?
= t(".none")
- else
%ul.comment__container
- comments.order(:created_at).each do |comment|
= render CommentComponent.new(comment:, answer: a)