diff options
author | href <href@random.sh> | 2021-09-07 08:14:33 +0200 |
---|---|---|
committer | href <href@random.sh> | 2021-09-07 08:14:33 +0200 |
commit | b10f9797cb15d0e8a4e4b5014138dc5bfd875d88 (patch) | |
tree | 67877b6b91db23f768720245d0b5754a2670d87b /lib/lsg_web/components/component.ex | |
parent | alcoolog: fix ets (diff) |
live fixes/improvements
Diffstat (limited to '')
-rw-r--r-- | lib/lsg_web/components/component.ex | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/lsg_web/components/component.ex b/lib/lsg_web/components/component.ex index 37d75e3..d504129 100644 --- a/lib/lsg_web/components/component.ex +++ b/lib/lsg_web/components/component.ex @@ -3,6 +3,10 @@ defmodule LSGWeb.Component do @date_time_default_format "%F %H:%M" @date_time_formats %{"time-24-with-seconds" => "%H:%M:%S"} + def naive_date_time_utc(assigns = %{at: nil}) do + "" + end + def naive_date_time_utc(assigns = %{format: format}) do assigns = assign(assigns, :format, Map.get(@date_time_formats, format, format)) ~H""" |