Răsfoiți Sursa

change navigation after page duplication

yohei0125 4 ani în urmă
părinte
comite
fdef6165c7

+ 1 - 1
packages/app/src/components/Navbar/GrowiContextualSubNavigation.tsx

@@ -194,7 +194,7 @@ const GrowiContextualSubNavigation = (props) => {
 
   const renameItemClickedHandler = useCallback(async(page: IPageToRenameWithMeta<IPageInfoForEntity>) => {
     const renamedHandler: OnRenamedFunction = () => {
-      if (page.meta != null && page.meta.isEmpty) {
+      if (page.data._id !== null) {
         window.location.href = `/${page.data._id}`;
         return;
       }