From d2e0a4eb15b0d28e1dbe326ee33d0a630de6dafb Mon Sep 17 00:00:00 2001 From: = Date: Wed, 10 Jun 2020 12:53:55 +0200 Subject: [PATCH] fix loop modali --- .../wwwroot/src/app_modules_thermo/setup/components/setup.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/setup.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/setup.ts index 8c4e2144..49904ebb 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/setup.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/setup.ts @@ -31,7 +31,9 @@ export default class Setup extends Vue { async showModalAtStep(step: number) { try { let next = await this.showModalStep(step); + if (next == null) return; this.showModalAtStep(step + next); + debugger } catch { } }