diff --git a/Ideen.md b/Ideen.md index 1877dda..be367b1 100644 --- a/Ideen.md +++ b/Ideen.md @@ -6,4 +6,7 @@ - Option "Nur Groß-/Kleinbuchstaben" (standard nur groß) - Option "Leerzeichen ignorieren" (standard ja) - Option "custom Zuordnung Buchstaben" (standard leer) + +# Fixed + - Lösungsbuchstaben weniger als türchen erzeugt bug \ No newline at end of file diff --git a/api/advent22_api/core/depends.py b/api/advent22_api/core/depends.py index 514bb23..39b8cfb 100644 --- a/api/advent22_api/core/depends.py +++ b/api/advent22_api/core/depends.py @@ -64,6 +64,8 @@ async def get_all_parts( result[day] = result.get(day, "") result[day] += letter + result |= {missed_day: "" for missed_day in set(days) - set(result.keys())} + return result diff --git a/ui/src/components/admin/CalendarAssistant.vue b/ui/src/components/admin/CalendarAssistant.vue index 91328f6..d949fa1 100644 --- a/ui/src/components/admin/CalendarAssistant.vue +++ b/ui/src/components/admin/CalendarAssistant.vue @@ -6,13 +6,14 @@