From acdf9440e3b19df31fc14868889b80a47634eec0 Mon Sep 17 00:00:00 2001 From: Bram Reyniers <55666730+reyniersbram@users.noreply.github.com> Date: Thu, 23 May 2024 15:02:16 +0200 Subject: [PATCH] Revert "publish date checks (#249)" This reverts commit a9af76058246a4ca958062d84cb58b82d5fb7053. --- frontend/src/components/project/RadiobuttonList.vue | 4 ---- frontend/src/views/CreateProjectView.vue | 1 - 2 files changed, 5 deletions(-) diff --git a/frontend/src/components/project/RadiobuttonList.vue b/frontend/src/components/project/RadiobuttonList.vue index 71e2707f..6df6cf28 100644 --- a/frontend/src/components/project/RadiobuttonList.vue +++ b/frontend/src/components/project/RadiobuttonList.vue @@ -59,10 +59,6 @@ watch(isToggled, (newVal) => { } }); -watch(selectedOption, (newVal) => { - emit("update:selectedOption", newVal); -}); - function handleDateChange(value: Date) { emit("update:date", value); } diff --git a/frontend/src/views/CreateProjectView.vue b/frontend/src/views/CreateProjectView.vue index 4d86708c..5ed5f619 100644 --- a/frontend/src/views/CreateProjectView.vue +++ b/frontend/src/views/CreateProjectView.vue @@ -380,7 +380,6 @@ function generateEmptyGroups(projectId: number) { emptyGroups.push({ project_id: projectId, score: 0, - num: i, }); } return emptyGroups;