From 0fe26128ff3ad0a2ef1872a4454536366bede99f Mon Sep 17 00:00:00 2001 From: Hayden Date: Wed, 6 Jan 2021 08:39:48 -0900 Subject: [PATCH] close button + resest error --- frontend/src/components/AddRecipe.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/AddRecipe.vue b/frontend/src/components/AddRecipe.vue index 4bd0718473ca..b44838374699 100644 --- a/frontend/src/components/AddRecipe.vue +++ b/frontend/src/components/AddRecipe.vue @@ -19,7 +19,8 @@ - Submit + Close + Submit @@ -73,10 +74,11 @@ export default { }, reset() { - (this.fab = false), - (this.addRecipe = false), - (this.recipeURL = ""), - (this.processing = false); + this.fab = false; + this.error = false; + this.addRecipe = false; + this.recipeURL = ""; + this.processing = false; }, }, };