Add assign for the article_content

This commit is contained in:
Thelonius Kort
2023-01-19 22:21:11 +01:00
parent 4e311f711c
commit eff9890fce
2 changed files with 4 additions and 2 deletions

View File

@ -11,10 +11,12 @@ defmodule OutlookWeb.ArticleLive.Show do
@impl true
def handle_params(%{"id" => id}, _, socket) do
article = Articles.get_article_with_translations!(id)
{:noreply,
socket
|> assign(:page_title, page_title(socket.assigns.live_action))
|> assign(:article, Articles.get_article_with_translations!(id))}
|> assign(:article_content, InternalTree.garnish(article.content, %{tunits: %{class: "tunit"}}))
|> assign(:article, article)}
end
defp page_title(:show), do: "Show Article"