mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
Compare commits
11 Commits
refactor/f
...
fix-projec
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70b216675d | ||
|
|
302a42fc96 | ||
|
|
9ac1d1793f | ||
|
|
fcc593276f | ||
|
|
a3bd1ae156 | ||
|
|
60bdab06ea | ||
|
|
888b95cdac | ||
|
|
3c0574644c | ||
|
|
0a6d18970b | ||
|
|
836c3be581 | ||
|
|
b0941974e5 |
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import Root from "@/components/project/root";
|
||||
|
||||
const ProjectPageRoot = () => <Root />;
|
||||
|
||||
export default ProjectPageRoot;
|
||||
export const ProjectPageRoot = () => <Root />;
|
||||
|
||||
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user