analytics/lib/plausible_web/views/error_helpers.ex
2019-09-02 12:29:19 +01:00

10 lines
254 B
Elixir

defmodule PlausibleWeb.ErrorHelpers do
use Phoenix.HTML
def error_tag(form, field) do
Enum.map(Keyword.get_values(form.errors, field), fn error ->
content_tag(:div, elem(error, 0), class: "text-red text-xs italic mt-3")
end)
end
end