Skip to content

Commit

Permalink
smol fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DRIESASTER committed Apr 16, 2024
1 parent 8a4547d commit baafb81
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions frontend/src/views/CreateProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<v-container>
<v-row>
<v-col cols="12" md="6">
<v-text-field v-model="title" label="Title" required placeholder="Enter Title" />
<v-text-field v-model="project_title" label="Title" required placeholder="Enter Title" />
</v-col>
<v-col cols="12" md="6">
<CheckBox :title="'Teacher(s)'" :items="teachers" placeholder="Assign Teachers" />
Expand Down Expand Up @@ -74,8 +74,7 @@ import { QuillEditor } from '@vueup/vue-quill';
import '@vueup/vue-quill/dist/vue-quill.snow.css';
import BackgroundContainer from "@/components/BackgroundContainer.vue";
// const quillContent = ref('');
const title = ref('Default Title'); // Set a default title
const project_title = ref("");
const deadline = ref(new Date());
const capacity = ref(1);
const selectedCourse = ref(undefined);
Expand All @@ -95,10 +94,6 @@ defineProps<{
title: string;
}>();
watchEffect(() => {
console.log("Title:", title.value);
});
const { data: instructorsData, error, isLoading, isError } = useInstructorsForSubjectQuery(selectedCourse);
Expand Down

0 comments on commit baafb81

Please sign in to comment.