diff --git a/src/components/IngredientLine.vue b/src/components/IngredientLine.vue index 50761c3..075f9fa 100644 --- a/src/components/IngredientLine.vue +++ b/src/components/IngredientLine.vue @@ -29,8 +29,8 @@ export default { watch: { ingredient: { handler: function (newIngredient) { - this.ingredientText = newIngredient?.line ?? this.ingredientText; - this.productLink = newIngredient.product?.link ?? this.productLink; + this.ingredientText = newIngredient?.line ?? ""; + this.productLink = newIngredient.product?.link ?? ""; }, deep: true, },