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 { } }