mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-04-03 14:19:12 +02:00
fixes Retrospring/bugs#23
This commit is contained in:
parent
a1a0781cc9
commit
667bb155c9
2 changed files with 4 additions and 4 deletions
app/views
|
@ -2,7 +2,7 @@
|
||||||
There are no comments yet.
|
There are no comments yet.
|
||||||
- else
|
- else
|
||||||
%ul.comments
|
%ul.comments
|
||||||
- report.moderation_comments.all.each do |comment|
|
- report.moderation_comments.order(:created_at).each do |comment|
|
||||||
%li{data: { comment_id: comment.id }}
|
%li{data: { comment_id: comment.id }}
|
||||||
.media.comments--media
|
.media.comments--media
|
||||||
.pull-left
|
.pull-left
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
There are no comments yet.
|
There are no comments yet.
|
||||||
- else
|
- else
|
||||||
%ul.comments
|
%ul.comments
|
||||||
- a.comments.all.each do |comment|
|
- a.comments.order(:created_at).each do |comment|
|
||||||
%li{data: { comment_id: comment.id }}
|
%li{data: { comment_id: comment.id }}
|
||||||
.media.comments--media
|
.media.comments--media
|
||||||
.pull-left
|
.pull-left
|
||||||
|
|
Loading…
Reference in a new issue