Explorar el Código

Merge branch 'feat/show-link-to-private-legacy-pages' into feat/put-private-page-migration-link-bottom

Taichi Masuyama hace 4 años
padre
commit
63e7c96c28
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/app/src/components/Sidebar/PageTree.tsx

+ 1 - 1
packages/app/src/components/Sidebar/PageTree.tsx

@@ -24,7 +24,7 @@ const PageTree: FC = memo(() => {
 
       <div className="grw-sidebar-content-footer">
         {
-          data?.migratablePagesCount != null && data.migratablePagesCount === 0 && (
+          data?.migratablePagesCount != null && data.migratablePagesCount !== 0 && (
             <PrivateLegacyPages />
           )
         }