This commit is contained in:
byte[] 2020-12-16 09:27:44 -05:00
parent c1992d272b
commit 0206c410de
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ defmodule PhilomenaWeb.ReportController do
_falsy ->
case Reports.create_report(reportable.id, reportable_type, attribution, report_params) do
{:ok, report} ->
{:ok, _report} ->
conn
|> put_flash(
:info,

View file

@ -30,7 +30,7 @@ defmodule PhilomenaWeb.Tag.AutocompleteController do
|> Elasticsearch.search_records(preload(Tag, :aliased_tag))
|> Enum.map(&(&1.aliased_tag || &1))
|> Enum.uniq_by(& &1.id)
|> Enum.filter(& &1.images_count > 3)
|> Enum.filter(&(&1.images_count > 3))
|> Enum.sort_by(&(-&1.images_count))
|> Enum.take(5)
|> Enum.map(&%{label: "#{&1.name} (#{&1.images_count})", value: &1.name})