perform test #1

test to courses

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-06-24 12:49:20 +08:00
parent fbef7cb6e6
commit 93c3c688ca
26 changed files with 2141 additions and 452 deletions
@@ -178,12 +178,19 @@ export function QuestionCard({ question, index, onChange, onRemove, error }) {
{/* Options */}
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label className="text-xs text-muted-foreground uppercase tracking-wide">
Options
<span className="ml-1 normal-case text-muted-foreground/60">
— click circle to mark correct
</span>
</Label>
<div className="space-y-0.5">
<Label className="text-xs text-muted-foreground uppercase tracking-wide">
Options
<span className="ml-1 normal-case text-muted-foreground/60">
— click circle to mark correct
</span>
</Label>
{question.type === "multi_select" && correctCount > 0 && (
<p className="text-xs text-blue-600 dark:text-blue-400">
Students must select {correctCount} answer{correctCount !== 1 ? "s" : ""}
</p>
)}
</div>
{question.type !== "true_false" && (
<Button
type="button"