diff --git a/README.md b/README.md index 1a62e45..35ecb24 100644 --- a/README.md +++ b/README.md @@ -39,15 +39,10 @@ schedule planning view? just outline concepts? (maybe some non-canvas scheduled holiday schedule -multi-seciton support for due dates/times +multi-section support for due dates/times better error handling when files are unparseable -new settings -- default submission types -- default file types -- default lockAt offset - websocket server to watch file system for changes, notify frontend it should invalidate cache lectures diff --git a/nextjs/src/app/course/[courseName]/modules/NewItemForm.tsx b/nextjs/src/app/course/[courseName]/modules/NewItemForm.tsx index fe5cdb2..f5ba0e6 100644 --- a/nextjs/src/app/course/[courseName]/modules/NewItemForm.tsx +++ b/nextjs/src/app/course/[courseName]/modules/NewItemForm.tsx @@ -89,6 +89,7 @@ export default function NewItemForm({ item: { name, description: "", + localAssignmentGroupName: assignmentGroup?.name ?? "", dueAt, lockAt, submissionTypes: settings.defaultAssignmentSubmissionTypes, @@ -103,6 +104,7 @@ export default function NewItemForm({ item: { name, description: "", + localAssignmentGroupName: assignmentGroup?.name ?? "", dueAt, lockAt, shuffleAnswers: true, diff --git a/nextjs/src/app/globals.css b/nextjs/src/app/globals.css index 3936890..d19fa1c 100644 --- a/nextjs/src/app/globals.css +++ b/nextjs/src/app/globals.css @@ -75,6 +75,7 @@ blockquote { code { @apply font-mono text-sm bg-gray-800 px-2 py-1 rounded-md leading-tight inline-block; + @apply text-wrap; } p {