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

Commit

Permalink
other bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ALBERICLOOS committed May 23, 2024
1 parent 9b43ba0 commit fdee646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/ProjectTeacherComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ export function ProjectTeacherComponent(props: {

const course_options = props.project.all_courses.filter(course => !course.course_archived).map(course => course.course_name);

const hours_array = Array.from({length: 24}, (_, index) => index.toString().padStart(2, '0'));
const minutes_array = Array.from({length: 60}, (_, index) => index.toString().padStart(2, '0'));
const hours_array = Array.from({length: 24}, (_, index) => index.toString());
const minutes_array = Array.from({length: 60}, (_, index) => index.toString());

// SimpleTests
const [requiredFilesHasChanged, setRequiredFilesHasChanged] = useState(false);
Expand Down

0 comments on commit fdee646

Please sign in to comment.