summaryrefslogtreecommitdiff
path: root/lib/lsg_web/live/chat_live.html.heex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lsg_web/live/chat_live.html.heex')
-rw-r--r--lib/lsg_web/live/chat_live.html.heex6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lsg_web/live/chat_live.html.heex b/lib/lsg_web/live/chat_live.html.heex
index fc1f582..29cd6a1 100644
--- a/lib/lsg_web/live/chat_live.html.heex
+++ b/lib/lsg_web/live/chat_live.html.heex
@@ -27,7 +27,7 @@
<%= if is_map(message) && Map.get(message, :__struct__) == IRC.Message do %>
<li class="flex gap-2 place-items-center message"
data-account-id={message.account.id}>
- <LSGWeb.MessageComponent.content
+ <NolaWeb.MessageComponent.content
message={message}
self={message.account.id == @account_id}
text={message.text}
@@ -41,10 +41,10 @@
<%= if is_map(message) && Map.get(message, :type) do %>
<li class="flex gap-2 place-items-center event">
- <LSGWeb.Component.naive_date_time_utc datetime={message.at} format="time-24-with-seconds" />
+ <NolaWeb.Component.naive_date_time_utc datetime={message.at} format="time-24-with-seconds" />
<span class="inline-block font-bold flex-none cursor-default text-gray-700">*&nbsp;*&nbsp;*</span>
<span class="inline-block flex-grow cursor-default text-gray-700">
- <LSGWeb.EventComponent.content event={message}
+ <NolaWeb.EventComponent.content event={message}
self={@users[message.user_id] && @users[message.user_id].account == @account_id}
user={@users[message.user_id]}
/>