diff --git a/lib/outlook/translations/translation.ex b/lib/outlook/translations/translation.ex index 97c4432..2cd972c 100644 --- a/lib/outlook/translations/translation.ex +++ b/lib/outlook/translations/translation.ex @@ -23,7 +23,8 @@ defmodule Outlook.Translations.Translation do @doc false def changeset(translation, attrs) do translation - |> cast(attrs, [:lang, :title, :teaser, :content, :date, :public, :unauthorized]) + |> cast(attrs, [:lang, :title, :teaser, :date, :public, :unauthorized]) + |> cast(attrs, [:content], force_changes: true) |> validate_required([:lang, :title, :teaser, :content, :date, :public, :unauthorized]) end end