From 3fce17d8ae876c5805f6d0953afa932a775d822b Mon Sep 17 00:00:00 2001 From: evazion Date: Sun, 12 Jan 2020 00:42:23 -0600 Subject: [PATCH] upload tags report: fix incorrect column name. --- app/views/reports/upload_tags.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/reports/upload_tags.html.erb b/app/views/reports/upload_tags.html.erb index 7967826ca..aade7c72e 100644 --- a/app/views/reports/upload_tags.html.erb +++ b/app/views/reports/upload_tags.html.erb @@ -11,7 +11,7 @@ <% t.column "Tags added by uploader", width: "45%" do |upload_report| %> <%= TagSetPresenter.new(upload_report.uploader_tags_array).inline_tag_list_html %> <% end %> - <% t.column "Tags added by uploader", width: "45%" do |upload_report| %> + <% t.column "Tags changed by other users", width: "45%" do |upload_report| %> <%= render "reports/tag_diff_list", added_tags: upload_report.added_tags_array, removed_tags: upload_report.removed_tags_array %> <% end %> <% end %>