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; }, }, };