From d219c2180b5e10e741fd5f2425f12e352db6f9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B6ckelmann?= Date: Sat, 10 Feb 2024 17:12:01 +0100 Subject: [PATCH] Remove StateLabel and Description from Dummy ProductStateCreation --- src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 9218ceb..95cb454 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -162,7 +162,7 @@ export class AppComponent implements OnInit{ weather_season.addChildGamesystem(weather); weather_season.addChildGamesystem(season); - weather_season.createState(ProductState.computeProductStateLabel([springState!, sunnyState!]), "", [springState!, sunnyState!]); + weather_season.createState([springState!, sunnyState!]); this.gameModel.addGamesystem(weather_season); }