Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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<ActiveCodeExerciseSettingsProps> = ({
Expand Down Expand Up @@ -96,7 +96,7 @@ export const ActiveCodeExerciseSettings: FC<ActiveCodeExerciseSettingsProps> = (
className="w-full"
onChange={(e) => handlePersonalizationChange(e.value)}
/>
<label htmlFor="parsonspersonalize">Personalization Level</label>
<label htmlFor="parsonspersonalize">Personalized blocks to arrange</label>
</span>
</div>

Expand Down