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
Plaintext
Raw Normal View History

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