From 325349936b3a393c5a25ef53002c165b3b464e97 Mon Sep 17 00:00:00 2001 From: "Felipe@MBP2" Date: Thu, 5 Nov 2020 23:13:41 -0500 Subject: [PATCH 1/2] add ID to report popup so we can do more analisis --- app/views/reports/post_list.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/reports/post_list.html.erb b/app/views/reports/post_list.html.erb index 786bac8b5..7853f0aea 100644 --- a/app/views/reports/post_list.html.erb +++ b/app/views/reports/post_list.html.erb @@ -13,10 +13,11 @@ <% @posts.each do |cat, ps| %> -

<%= cat || '—' %>

+

<%= cat || '—' %>

<% ps.each do |post| %> + <%= post.id %> <%= post.title %> <%= "#{post.user} (#{post.member_uid})" %> From 1be1199243935d6b27a091d43efa39cd789e5d53 Mon Sep 17 00:00:00 2001 From: "Felipe@MBP2" Date: Tue, 10 Nov 2020 02:16:24 -0500 Subject: [PATCH 2/2] remove hardcoded style --- app/views/reports/post_list.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/reports/post_list.html.erb b/app/views/reports/post_list.html.erb index 7853f0aea..b4241351c 100644 --- a/app/views/reports/post_list.html.erb +++ b/app/views/reports/post_list.html.erb @@ -17,7 +17,7 @@ <% ps.each do |post| %> - <%= post.id %> + <%= post.id %> <%= post.title %> <%= "#{post.user} (#{post.member_uid})" %>