Fix: Sync Log und verwaise Einträge
CI / build-and-test (push) Canceled after 0s

This commit is contained in:
2026-09-07 17:09:38 +02:00
parent 835cccadec
commit 86e114580f
12 changed files with 145 additions and 12 deletions
@@ -304,6 +304,11 @@ public partial class DocumentationDialogViewModel : ObservableObject
var valid = true;
if (CanPickStudent && SelectedStudent is null) { StudentError = "Bezug auswählen."; valid = false; }
if (!CanPickStudent && _studentId == Guid.Empty && _contextGroupId is null)
{
StudentError = "Die Schülerliste ist noch nicht geladen. Dialog schließen und erneut öffnen.";
valid = false;
}
if (string.IsNullOrWhiteSpace(Title)) { TitleError = "Titel erforderlich."; valid = false; }