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

Commit

Permalink
Merge pull request #397 from SELab-2/bug_create_project
Browse files Browse the repository at this point in the history
Bug create project
  • Loading branch information
msathieu authored May 23, 2024
2 parents 761099e + ac31aa5 commit b9119fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/ProjectTeacherComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,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

0 comments on commit b9119fc

Please sign in to comment.