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 }>({})