File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed
course-matrix/frontend/src/pages/TimetableBuilder Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -379,21 +379,23 @@ const TimetableBuilder = () => {
379379 < p className = "text-sm" >
380380 Selected courses: { selectedCourses . length } (Max 8)
381381 </ p >
382- { ! isEditingTimetable && ( < div className = "flex items-center gap-2" >
383- < Checkbox
384- id = "manual-selection"
385- checked = { isChoosingSectionsManually }
386- onCheckedChange = { ( checked ) =>
387- setIsChoosingSectionsManually ( checked === true )
388- }
389- />
390- < label
391- htmlFor = "manual-selection"
392- className = "text-sm font-medium"
393- >
394- Choose meeting sections manually?
395- </ label >
396- </ div > ) }
382+ { ! isEditingTimetable && (
383+ < div className = "flex items-center gap-2" >
384+ < Checkbox
385+ id = "manual-selection"
386+ checked = { isChoosingSectionsManually }
387+ onCheckedChange = { ( checked ) =>
388+ setIsChoosingSectionsManually ( checked === true )
389+ }
390+ />
391+ < label
392+ htmlFor = "manual-selection"
393+ className = "text-sm font-medium"
394+ >
395+ Choose meeting sections manually?
396+ </ label >
397+ </ div >
398+ ) }
397399 </ div >
398400 < div className = "flex gap-2 flex-col" >
399401 { ! isEditingTimetable ||
You can’t perform that action at this time.
0 commit comments