From 34ceddd42d6e44f57f4697a254533872c53f4844 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Tue, 10 Dec 2019 19:34:30 -0500 Subject: Revert steps.instructions -> step.instruction For compatibility with backend JSON. --- recipeBuddy/src/app/cook-page/cook-page.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'recipeBuddy/src/app/cook-page') diff --git a/recipeBuddy/src/app/cook-page/cook-page.component.ts b/recipeBuddy/src/app/cook-page/cook-page.component.ts index 9dfc605..3def7db 100644 --- a/recipeBuddy/src/app/cook-page/cook-page.component.ts +++ b/recipeBuddy/src/app/cook-page/cook-page.component.ts @@ -37,9 +37,9 @@ export class CookPageComponent implements OnInit { this.steps = recipe.steps; this.servingSize = recipe.servingSize; this.stepNum = 1; - this.currentStep = this.steps[this.stepNum-1].instructions; + this.currentStep = this.steps[this.stepNum-1].instruction; if(this.steps.length > 1) - this.nextStep = this.steps[this.stepNum].instructions; + this.nextStep = this.steps[this.stepNum].instruction; else this.lastStep = true; // this.timeLeft = this.steps[this.stepNum-1].timer; @@ -59,10 +59,10 @@ export class CookPageComponent implements OnInit { if(this.stepNum == this.steps.length) { this.lastStep = true; } else { - this.nextStep = this.steps[this.stepNum].instructions; + this.nextStep = this.steps[this.stepNum].instruction; } - this.previousStep = this.steps[this.stepNum-2].instructions; - this.currentStep = this.steps[this.stepNum-1].instructions; + this.previousStep = this.steps[this.stepNum-2].instruction; + this.currentStep = this.steps[this.stepNum-1].instruction; this.timeLeft = this.steps[this.stepNum-1].timer; } @@ -73,10 +73,10 @@ export class CookPageComponent implements OnInit { if(this.stepNum == 1) { this.firstStep = true; } else { - this.previousStep = this.steps[this.stepNum-2].instructions; + this.previousStep = this.steps[this.stepNum-2].instruction; } - this.currentStep = this.steps[this.stepNum-1].instructions; - this.nextStep = this.steps[this.stepNum].instructions; + this.currentStep = this.steps[this.stepNum-1].instruction; + this.nextStep = this.steps[this.stepNum].instruction; this.timeLeft = this.steps[this.stepNum-1].timer; } -- cgit v1.1