From 24420cb14e24a6c66670c7e1853c2836813f49c7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 1 Apr 2023 22:03:53 +0200 Subject: [PATCH] chore: remove old comment --- 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 4ab26685f..d8f61ebb9 100644 --- a/src/components/home/ProjectsNavigation.vue +++ b/src/components/home/ProjectsNavigation.vue @@ -68,7 +68,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 const collapsedProjects = ref<{ [id: IProject['id']]: boolean }>({}) const availableProjects = ref([]) const childProjects = ref<{ [id: IProject['id']]: boolean }>({})