7 lines
235 B
Ruby
7 lines
235 B
Ruby
module CommentsHelper
|
|
def comment_tag(comment, &)
|
|
tag.div id: dom_id(comment), class: "comment flex align-start full-width",
|
|
data: { creator_id: comment.creator_id, created_by_current_user_target: "creation" }, &
|
|
end
|
|
end
|