From 4e21b463df9af5aec9a5b45c8331f5a9f9e8aeb9 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 1 Apr 2023 21:48:46 +0200 Subject: [PATCH] chore: remove old todo --- src/components/home/ProjectsNavigation.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/home/ProjectsNavigation.vue b/src/components/home/ProjectsNavigation.vue index 78fedfad8..9c0a2efab 100644 --- a/src/components/home/ProjectsNavigation.vue +++ b/src/components/home/ProjectsNavigation.vue @@ -69,7 +69,6 @@ const projectStore = useProjectStore() // Vue draggable will modify the projects list as it changes their position which will not work on a prop. // Hence, we'll clone the prop and work on the clone. // FIXME: cloning does not work when loading the page initially -// TODO: child projects const collapsedProjects = ref<{ [id: IProject['id']]: boolean }>({}) const availableProjects = ref([]) const childProjects = ref<{ [id: IProject['id']]: boolean }>({})