Skip to content

Commit d270f8c

Browse files
committed
course: reorganize
1 parent eee6568 commit d270f8c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/packages/frontend/course/configuration/actions-panel.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -226,17 +226,11 @@ export const ActionsPanel: React.FC<Props> = React.memo(
226226
<div className="smc-vfill" style={{ overflowY: "scroll" }}>
227227
<Row>
228228
<Col md={12} style={{ padding: "15px 15px 15px 0" }}>
229-
{render_export_grades()}
230-
<br />
231229
{render_start_all_projects()}
232230
<br />
233231
{render_terminal_command()}
234232
<br />
235-
{render_delete_student_projects()}
236-
<br />
237-
{render_delete_all_students()}
238-
<br />
239-
{render_delete_shared_project()}
233+
{render_export_grades()}
240234
</Col>
241235
<Col md={12} style={{ padding: "15px" }}>
242236
{render_configure_all_projects()}
@@ -246,6 +240,12 @@ export const ActionsPanel: React.FC<Props> = React.memo(
246240
{render_push_missing_handouts_and_assignments()}
247241
<br />
248242
<EmptyTrash />
243+
<br />
244+
{render_delete_student_projects()}
245+
<br />
246+
{render_delete_all_students()}
247+
<br />
248+
{render_delete_shared_project()}
249249
</Col>
250250
</Row>
251251
</div>

src/packages/frontend/frame-editors/course-editor/course-tab-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ export const CourseTabBar: React.FC<Props> = (props: Props) => {
4646
eventKey: "course_handouts",
4747
title: `Handouts (${counts.handouts})`,
4848
}),
49-
Tab({ eventKey: "course_shared_project", title: `Shared Project` }),
5049
Tab({ eventKey: "course_actions", title: `Actions` }),
5150
Tab({ eventKey: "course_configuration", title: `Configuration` }),
51+
Tab({ eventKey: "course_shared_project", title: `Shared Project` }),
5252
]}
5353
/>
5454
);

0 commit comments

Comments
 (0)