From 8a989bc1d051539c5c5ff6ecc0d3d574ba88d166 Mon Sep 17 00:00:00 2001 From: jableader Date: Wed, 17 Jan 2024 23:32:07 +1100 Subject: [PATCH] Still product blanking bugs --- src/components/IngredientLine.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, },