summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/add-recipe/add-recipe.component.ts
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-14 14:07:36 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-14 16:02:55 -0500
commit9ed977689fe92e514e83eec43ff809e89a460129 (patch)
treea5bc47ad5c4b5ef97f0098180acf46b3f7af5932 /recipeBuddy/src/app/add-recipe/add-recipe.component.ts
parent4ec8cbd63deb6cb8b24db58b36ecd4a3ccdda79e (diff)
Fix changes made for demo
Changes reloading times so recipes are successfully added/deleted. Adds checked/cart_index to Ingredient on DataModel
Diffstat (limited to 'recipeBuddy/src/app/add-recipe/add-recipe.component.ts')
-rw-r--r--recipeBuddy/src/app/add-recipe/add-recipe.component.ts3
1 files changed, 2 insertions, 1 deletions
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));
}
}