From d21004476c074706d6e1d6f720f6b8b71cdf7cd5 Mon Sep 17 00:00:00 2001 From: Aadarsh Padiyath Date: Tue, 5 May 2026 16:46:57 -0400 Subject: [PATCH] Improve CodeTailor dropdown labels for clarity Replace opaque "Solution" / "Solution & Block" labels with educator-friendly descriptions that communicate what students will actually experience in the Parsons puzzle. --- .../ActiveCodeExercise/ActiveCodeExerciseSettings.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bases/rsptx/assignment_server_api/assignment_builder/src/components/routes/AssignmentBuilder/components/exercises/components/CreateExercise/components/ActiveCodeExercise/ActiveCodeExerciseSettings.tsx b/bases/rsptx/assignment_server_api/assignment_builder/src/components/routes/AssignmentBuilder/components/exercises/components/CreateExercise/components/ActiveCodeExercise/ActiveCodeExerciseSettings.tsx index 483ae4f23..8d222e9c0 100644 --- a/bases/rsptx/assignment_server_api/assignment_builder/src/components/routes/AssignmentBuilder/components/exercises/components/CreateExercise/components/ActiveCodeExercise/ActiveCodeExerciseSettings.tsx +++ b/bases/rsptx/assignment_server_api/assignment_builder/src/components/routes/AssignmentBuilder/components/exercises/components/CreateExercise/components/ActiveCodeExercise/ActiveCodeExerciseSettings.tsx @@ -18,8 +18,8 @@ interface ActiveCodeExerciseSettingsProps { } const PERSONALIZATION_LEVELS = [ - { label: "Solution", value: "movable" }, - { label: "Solution & Block", value: "partial" } + { label: "Arrange all blocks", value: "movable" }, + { label: "Correct blocks locked; arrange incorrect blocks", value: "partial" } ]; export const ActiveCodeExerciseSettings: FC = ({ @@ -96,7 +96,7 @@ export const ActiveCodeExerciseSettings: FC = ( className="w-full" onChange={(e) => handlePersonalizationChange(e.value)} /> - +