Skip to content

Commit

Permalink
fix: Project imports
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed Apr 14, 2024
1 parent 45b606e commit a413503
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/projects/ProjectCard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import Card from 'primevue/card';
import Button from 'primevue/button';
import { type Project } from '@/types/Projects.ts';
import { type Project } from '@/types/Project.ts';
import { PrimeIcons } from 'primevue/api';
import { useI18n } from 'vue-i18n';
import { computed } from 'vue';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/projects/SubmissionCard.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
/* Component props */
import { type Project } from '@/types/Projects.ts';
import { type Project } from '@/types/Project.ts';
import { PrimeIcons } from 'primevue/api';
import Card from 'primevue/card';
import { useI18n } from 'vue-i18n';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/calendar/CalendarView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { computed, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useAuthStore } from '@/store/authentication.store.ts';
import { storeToRefs } from 'pinia';
import { type Project } from '@/types/Projects.ts';
import { type Project } from '@/types/Project.ts';
import { type RoleUser } from '@/types/users/Generics.ts';
import { useRoute, useRouter } from 'vue-router';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/projects/CreateProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import InputSwitch from 'primevue/inputswitch';
import { reactive, computed } from 'vue';
import { useRouter, useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { Project } from '@/types/Projects';
import { Project } from '@/types/Project';
import { useProject } from '@/composables/services/project.service';
import { required, helpers } from '@vuelidate/validators';
import { useVuelidate } from '@vuelidate/core';
Expand Down

0 comments on commit a413503

Please sign in to comment.