### feat: erweitere Wizard- und UI-Logik

- Füge automatische Re-Evaluierung im `EventWizardViewModel` nach Import hinzu.
- Aktualisiere `StammdatenImportScreen` mit `onBack`-Callback für Status-Prüfung.
- Erweitere `PingScreen` im `ConnectivityCheck`-Screen um Navigation zum Login.
- Präzisiere `hasZns`-Guard mit Prüfung auf Import-Datum.
This commit is contained in:
2026-04-21 21:10:58 +02:00
parent 92028d9e02
commit 3f4ba9eea9
4 changed files with 35 additions and 26 deletions
@@ -340,12 +340,12 @@ fun DesktopContentArea(
}
is AppScreen.ConnectivityCheck -> {
val viewModel = koinViewModel<PingViewModel>()
PingScreen(
viewModel = viewModel,
onNavigateToLogin = { onNavigate(AppScreen.Login()) }
)
}
val viewModel = koinViewModel<PingViewModel>()
PingScreen(
viewModel = viewModel,
onNavigateToLogin = { onNavigate(AppScreen.Login()) }
)
}
is AppScreen.Profile -> {
val viewModel = koinViewModel<ProfileViewModel>()