Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Bug create project #397

Merged
merged 5 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion frontend/src/components/ProjectTeacherComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function ProjectTeacherComponent(props: {
_.isEqual(dockerString, initialValues.value10) &&
_.isEqual(visible, initialValues.value11) &&
_.isEqual(archived, initialValues.value12);
_.isEqual(groups, initialValues.value13);
_.isEqual(groups, initialValues.value13);
const second_part_1 = deadline;
const second_part_2 = initialValues.value5;
const second_part = _.isEqual(second_part_1, second_part_2);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/teacher/CreateProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function CreateProject(): JSX.Element {

const emptyProjectTeacher: ProjectTeacher = {
projectId: -1,
courseName: data.courses[0].course_name,
courseName: data.courses.filter(course => !course.course_archived)[0].course_name,
all_courses: data.courses,
deadline: (new Date(Date.now())).toISOString(),
description: "",
Expand Down