diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInfoCard.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInfoCard.vue index 962b2c6fa..54e39e86e 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInfoCard.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInfoCard.vue @@ -35,7 +35,7 @@ > diff --git a/frontend/components/Domain/Recipe/RecipeYield.vue b/frontend/components/Domain/Recipe/RecipeYield.vue index 0ba676a3a..48738b7ae 100644 --- a/frontend/components/Domain/Recipe/RecipeYield.vue +++ b/frontend/components/Domain/Recipe/RecipeYield.vue @@ -34,7 +34,7 @@ export default defineNuxtComponent({ type: Number, default: 0, }, - yield: { + yieldText: { type: String, default: "", }, @@ -59,7 +59,7 @@ export default defineNuxtComponent({ const { scaledAmountDisplay } = useScaledAmount(props.yieldQuantity, props.scale); return scaledAmountDisplay; }); - const text = sanitizeHTML(props.yield); + const text = sanitizeHTML(props.yieldText); return { scaledAmount,