Skip to content

Commit

Permalink
knoppen academie jaar subjects fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiscauwel committed May 22, 2024
1 parent 3579851 commit 2824859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const props = defineProps<{
}>();
const { academicYears, subjects } = toRefs(props);
const activeAcademicYear = ref(useAcademicYear());
const activeAcademicYear = ref(useAcademicYear() - 2000);
const showInstructorSubjects = ref(true);
const showStudentSubjects = ref(true);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/subject/SubjectsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const subjectsList = computed(() => {
return [...instructorSubjects, ...studentSubjects];
});
const activeAcademicYear = ref<number>(useAcademicYear());
const activeAcademicYear = ref<number>(useAcademicYear() - 2000);
const activeSubjectsFilter = ref<SubjectFilter>({
showInstructorSubjects: true,
showStudentSubjects: true,
Expand Down

0 comments on commit 2824859

Please sign in to comment.