summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/pre-cook-pop-up
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-10 19:50:21 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-10 19:53:38 -0500
commit556fb4672019b6af56794998d6435f68e1c59368 (patch)
tree291e0cb67b0598a59da1976cadfaf5e900ae7de6 /recipeBuddy/src/app/pre-cook-pop-up
parentb0bd782b6ff20ff874afc9ebf0b8ab9274ea2a09 (diff)
parent3b8dd74dcb2be88630099772e0902e1dfbcde92c (diff)
Merge branch 'master' into elim
Diffstat (limited to 'recipeBuddy/src/app/pre-cook-pop-up')
-rw-r--r--recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html b/recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html
index 5fe4620..c1ef1ef 100644
--- a/recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html
+++ b/recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html
@@ -1,5 +1,5 @@
-<div *ngIf="cookedRecipe" class="outer-box">
- <h1>{{cookedRecipe.name}}</h1>
+<div *ngIf="cookedRecipe" class="outer-box">
+ <h1>{{cookedRecipe.name}}</h1>
<div class="input-box">
Serving<input (keyup)="updateRecipe($event)">
@@ -9,7 +9,7 @@
<div class="ingredients-list">
<li *ngFor="let ing of cookedRecipe.ingredients">
{{ing.name}}, {{ing.amount}} {{ing.unit}}
-
+
</div>
</div>