From cc4193e7e7ffd83efb079ce2ae4b54783eced0e4 Mon Sep 17 00:00:00 2001 From: liefersfl Date: Tue, 13 Mar 2018 12:32:41 +0100 Subject: [PATCH] recipe.program is now an object (was string). --- src/app/model/recipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/model/recipe.ts b/src/app/model/recipe.ts index e1bff31..5c68209 100644 --- a/src/app/model/recipe.ts +++ b/src/app/model/recipe.ts @@ -5,7 +5,7 @@ export class Recipe { title: string; description: string; licenseFee: number; - program: string; + program: {}; backgroundColor: string; components: CocktailComponent[];