From 89cc24f3034aa8b4e8f24647c41173a7c3734e39 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Sat, 14 Dec 2019 14:07:36 -0500 Subject: WIP-Changes made for demo, should be reviewed and merged as needed. --- recipeBuddy/src/app/add-recipe/add-recipe.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipeBuddy/src/app/add-recipe') diff --git a/recipeBuddy/src/app/add-recipe/add-recipe.component.ts b/recipeBuddy/src/app/add-recipe/add-recipe.component.ts index 3c32ae7..d27998a 100644 --- a/recipeBuddy/src/app/add-recipe/add-recipe.component.ts +++ b/recipeBuddy/src/app/add-recipe/add-recipe.component.ts @@ -124,7 +124,8 @@ export class AddRecipeComponent { formData.tags.split(',').filter(word=> !(word==="")), //tags formData.photos.split(',').filter(word=> !(word==="")) //photos ); - this.restService.createRecipe(recipe).subscribe(); + this.restService.createRecipe(recipe).subscribe(res => { this.router.navigate(['/']); + }, err => console.log(err)); } } -- cgit v1.1