retrospring/app/views/answerbox/_comments.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
186 B
Text
Raw Normal View History

2023-03-11 19:48:04 +01:00
- if comments.all.count.zero?
2022-07-30 22:45:40 +02:00
= t(".none")
- else
2020-05-02 21:23:04 +02:00
%ul.comment__container
2023-03-11 19:48:04 +01:00
- comments.order(:created_at).each do |comment|
= render CommentComponent.new(comment:, answer: a)