|
|
@@ -86,6 +86,7 @@ const UnsavedAlertDialog = dynamic(() => import('../components/UnsavedAlertDialo
|
|
|
const GrowiSubNavigationSwitcher = dynamic(() => import('../components/Navbar/GrowiSubNavigationSwitcher'), { ssr: false });
|
|
|
const UsersHomePageFooter = dynamic<UsersHomePageFooterProps>(() => import('../components/UsersHomePageFooter')
|
|
|
.then(mod => mod.UsersHomePageFooter), { ssr: false });
|
|
|
+const DrawioModal = dynamic(() => import('../components/PageEditor/DrawioModal').then(mod => mod.DrawioModal), { ssr: false });
|
|
|
const HandsontableModal = dynamic(() => import('../components/PageEditor/HandsontableModal').then(mod => mod.HandsontableModal), { ssr: false });
|
|
|
|
|
|
const logger = loggerFactory('growi:pages:all');
|
|
|
@@ -361,6 +362,7 @@ const GrowiPage: NextPage<Props> = (props: Props) => {
|
|
|
|
|
|
<UnsavedAlertDialog />
|
|
|
<DescendantsPageListModal />
|
|
|
+ <DrawioModal />
|
|
|
<HandsontableModal />
|
|
|
{shouldRenderPutbackPageModal && <PutbackPageModal />}
|
|
|
</div>
|