diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageComments.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageComments.vue index 50aef8415d0e..352fc8219062 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageComments.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageComments.vue @@ -35,7 +35,7 @@

{{ comment.user.username }} • {{ $d(Date.parse(comment.createdAt), "medium") }}

- {{ comment.text }} +
NoUndefinedField, diff --git a/frontend/components/Domain/Recipe/RecipeTimelineItem.vue b/frontend/components/Domain/Recipe/RecipeTimelineItem.vue index fd460d95d23a..72889aa54ef9 100644 --- a/frontend/components/Domain/Recipe/RecipeTimelineItem.vue +++ b/frontend/components/Domain/Recipe/RecipeTimelineItem.vue @@ -85,7 +85,7 @@ @error="hideImage = true" />
- {{ event.eventMessage }} +
@@ -101,9 +101,10 @@ import RecipeTimelineContextMenu from "./RecipeTimelineContextMenu.vue"; import { useStaticRoutes } from "~/composables/api"; import { Recipe, RecipeTimelineEventOut } from "~/lib/api/types/recipe" import UserAvatar from "~/components/Domain/User/UserAvatar.vue"; +import SafeMarkdown from "~/components/global/SafeMarkdown.vue"; export default defineComponent({ - components: { RecipeCardMobile, RecipeTimelineContextMenu, UserAvatar }, + components: { RecipeCardMobile, RecipeTimelineContextMenu, UserAvatar, SafeMarkdown }, props: { event: {