Skip to content

Commit

Permalink
chore: squash migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV committed Apr 4, 2024
1 parent d0cabf3 commit 0a2f284
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 5.0.3 on 2024-04-04 14:51

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('api', '0008_add_extra_checks'),
('api', '0008_course_faculty'),
]

operations = [
]
5 changes: 4 additions & 1 deletion frontend/src/views/calendar/CalendarView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ watch(
<div
v-for="project in projectsWithDeadline"
:key="project.id">
<ProjectCard class="h-100" :project="project" :course="project.course" />
<ProjectCard
class="h-100"
:project="project"
:course="project.course" />
</div>
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/views/dashboard/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ const { user } = storeToRefs(useAuthStore());

<template>
<BaseLayout>
<StudentDashboardView v-if="user?.isStudent()" :student="user as Student" />
<StudentDashboardView
v-if="user?.isStudent()"
:student="user as Student" />
</BaseLayout>
</template>
Expand Down

0 comments on commit 0a2f284

Please sign in to comment.