summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/recipe-card/recipe-card.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'recipeBuddy/src/app/recipe-card/recipe-card.component.ts')
-rw-r--r--recipeBuddy/src/app/recipe-card/recipe-card.component.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/recipeBuddy/src/app/recipe-card/recipe-card.component.ts b/recipeBuddy/src/app/recipe-card/recipe-card.component.ts
index 490f2ab..bb6fc9a 100644
--- a/recipeBuddy/src/app/recipe-card/recipe-card.component.ts
+++ b/recipeBuddy/src/app/recipe-card/recipe-card.component.ts
@@ -63,9 +63,8 @@ export class RecipeCardComponent implements OnInit {
if(txt == true)
{
alert(this.recipe.name + " was deleted.");
- this.restService.deleteRecipe(id).subscribe();
+ this.restService.deleteRecipe(id).subscribe(res=> window.location.reload(), err => console.log(err));
}
- window.location.reload();
}
}