mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +03:00
32937c53d1
* Upgrade config file * Upgrade grey colour * Update styles for dashboard * Update styles for new site flow * Update styles for user settings * Update site setting styles * Update other pages * Adjust spacing * Update last grey rules * Purge css
10 lines
258 B
Elixir
10 lines
258 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-500 text-xs italic mt-3")
|
|
end)
|
|
end
|
|
end
|