diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index 31750963c..540892e2c 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -39,7 +39,7 @@ import('@/views/migrate/MigrationHandler const ProjectList = () => import('@/views/project/ProjectList.vue') const ProjectGantt = () => import('@/views/project/ProjectGantt.vue') const ProjectTable = () => import('@/views/project/ProjectTable.vue') -const ProjectKanban = () => import('@/views/project/ProjectKanban.vue') +// If we load the component async, using it as a backdrop view will not work. Instead, everything explodes +// with an error from the core saying "Cannot read properties of undefined (reading 'parentNode')" +// Of course, with no clear indicator of where the problem comes from. +// const ProjectKanban = () => import('@/views/project/ProjectKanban.vue') +import ProjectKanban from '@/views/project/ProjectKanban.vue' const ProjectInfo = () => import('@/views/project/ProjectInfo.vue') // Project Settings diff --git a/src/views/project/ProjectKanban.vue b/src/views/project/ProjectKanban.vue index 0af6e9c55..832b017ab 100644 --- a/src/views/project/ProjectKanban.vue +++ b/src/views/project/ProjectKanban.vue @@ -1,7 +1,7 @@