Compare commits

...

11 Commits

Author SHA1 Message Date
gakshita
70b216675d Merge branch 'preview' of https://github.com/makeplane/plane into fix-project-page-import 2024-08-12 19:06:05 +05:30
gakshita
302a42fc96 fix: import error 2024-08-12 18:55:02 +05:30
gakshita
9ac1d1793f fix: build error 2024-08-12 18:15:27 +05:30
gakshita
fcc593276f fix: component splitting and refactoring 2024-08-12 17:56:32 +05:30
gakshita
a3bd1ae156 Merge branch 'preview' of https://github.com/makeplane/plane into chore/project-page-imports 2024-08-12 17:13:43 +05:30
gakshita
60bdab06ea fix: synced with preview 2024-08-08 16:59:03 +05:30
gakshita
888b95cdac Merge branch 'preview' of https://github.com/makeplane/plane into chore/project-page-imports 2024-08-08 16:57:31 +05:30
gakshita
3c0574644c fix: project page root moved 2024-08-08 16:50:51 +05:30
gakshita
0a6d18970b fix: code structure optimization 2024-08-08 00:42:13 +05:30
gakshita
836c3be581 chore: splitted the code for project creation form 2024-08-07 23:20:51 +05:30
gakshita
b0941974e5 chore: seperated project components for CE 2024-08-07 20:21:14 +05:30
4 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import ProjectPageRoot from "@/plane-web/components/projects/page";
import { ProjectPageRoot } from "@/plane-web/components/projects/page";
const ProjectsPage = () => <ProjectPageRoot />;
export default ProjectsPage;

View File

@@ -1,4 +1,4 @@
import ProjectPageRoot from "@/plane-web/components/projects/page";
import { ProjectPageRoot } from "@/plane-web/components/projects/page";
const ProjectsPage = () => <ProjectPageRoot />;
export default ProjectsPage;

View File

@@ -1,5 +1,3 @@
import Root from "@/components/project/root";
const ProjectPageRoot = () => <Root />;
export default ProjectPageRoot;
export const ProjectPageRoot = () => <Root />;

View File

@@ -60,6 +60,8 @@ const Root = observer(() => {
useEffect(() => {
if (pathname.includes("/archives")) {
updateDisplayFilters(workspaceSlug.toString(), { archived_projects: true });
} else {
updateDisplayFilters(workspaceSlug.toString(), { archived_projects: false });
}
}, [pathname]);
return (