File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
frame-editors/course-editor Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -226,17 +226,11 @@ export const ActionsPanel: React.FC<Props> = React.memo(
226
226
< div className = "smc-vfill" style = { { overflowY : "scroll" } } >
227
227
< Row >
228
228
< Col md = { 12 } style = { { padding : "15px 15px 15px 0" } } >
229
- { render_export_grades ( ) }
230
- < br />
231
229
{ render_start_all_projects ( ) }
232
230
< br />
233
231
{ render_terminal_command ( ) }
234
232
< br />
235
- { render_delete_student_projects ( ) }
236
- < br />
237
- { render_delete_all_students ( ) }
238
- < br />
239
- { render_delete_shared_project ( ) }
233
+ { render_export_grades ( ) }
240
234
</ Col >
241
235
< Col md = { 12 } style = { { padding : "15px" } } >
242
236
{ render_configure_all_projects ( ) }
@@ -246,6 +240,12 @@ export const ActionsPanel: React.FC<Props> = React.memo(
246
240
{ render_push_missing_handouts_and_assignments ( ) }
247
241
< br />
248
242
< EmptyTrash />
243
+ < br />
244
+ { render_delete_student_projects ( ) }
245
+ < br />
246
+ { render_delete_all_students ( ) }
247
+ < br />
248
+ { render_delete_shared_project ( ) }
249
249
</ Col >
250
250
</ Row >
251
251
</ div >
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ export const CourseTabBar: React.FC<Props> = (props: Props) => {
46
46
eventKey : "course_handouts" ,
47
47
title : `Handouts (${ counts . handouts } )` ,
48
48
} ) ,
49
- Tab ( { eventKey : "course_shared_project" , title : `Shared Project` } ) ,
50
49
Tab ( { eventKey : "course_actions" , title : `Actions` } ) ,
51
50
Tab ( { eventKey : "course_configuration" , title : `Configuration` } ) ,
51
+ Tab ( { eventKey : "course_shared_project" , title : `Shared Project` } ) ,
52
52
] }
53
53
/>
54
54
) ;
You can’t perform that action at this time.
0 commit comments