diff --git a/CHANGELOG.md b/CHANGELOG.md index b87cc72..4b5ba16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # v0.2.1 - Fix checkbox spacing for mobile view - Fix spacing with form elements in mobile view +- Fix user card spacing # v0.2.0 - Add or remove tags from containers list and details page diff --git a/lib/cannery_web/components/user_card.ex b/lib/cannery_web/components/user_card.ex index a75f7d9..d24b808 100644 --- a/lib/cannery_web/components/user_card.ex +++ b/lib/cannery_web/components/user_card.ex @@ -9,7 +9,7 @@ defmodule CanneryWeb.Components.UserCard do ~H"""
@@ -21,7 +21,8 @@ defmodule CanneryWeb.Components.UserCard do <%= if @user.confirmed_at |> is_nil() do %> Email unconfirmed <% else %> - User was confirmed at<%= @user.confirmed_at |> display_datetime() %> +

User was confirmed at

+ <%= @user.confirmed_at |> display_datetime() %> <% end %>